svn commit: samba r18527 - in branches/SAMBA_3_0/source/passdb: .

vlendec at samba.org vlendec at samba.org
Thu Sep 14 16:02:59 GMT 2006


Author: vlendec
Date: 2006-09-14 16:02:58 +0000 (Thu, 14 Sep 2006)
New Revision: 18527

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=18527

Log:
Janitor for Jeremy ;-)
Modified:
   branches/SAMBA_3_0/source/passdb/lookup_sid.c


Changeset:
Modified: branches/SAMBA_3_0/source/passdb/lookup_sid.c
===================================================================
--- branches/SAMBA_3_0/source/passdb/lookup_sid.c	2006-09-14 14:51:16 UTC (rev 18526)
+++ branches/SAMBA_3_0/source/passdb/lookup_sid.c	2006-09-14 16:02:58 UTC (rev 18527)
@@ -458,10 +458,10 @@
 			return False;
 		}
 
-		become_root();
+		become_root_uid_only();
 		result = pdb_lookup_rids(domain_sid, num_rids, rids,
 					 *names, *types);
-		unbecome_root();
+		unbecome_root_uid_only();
 
 		return (NT_STATUS_IS_OK(result) ||
 			NT_STATUS_EQUAL(result, NT_STATUS_NONE_MAPPED) ||
@@ -1132,9 +1132,9 @@
 		goto done;
 	}
 
-	become_root();
+	become_root_uid_only();
 	ret = pdb_uid_to_rid(uid, &rid);
-	unbecome_root();
+	unbecome_root_uid_only();
 
 	if (ret) {
 		/* This is a mapped user */
@@ -1177,9 +1177,9 @@
 		goto done;
 	}
 
-	become_root();
+	become_root_uid_only();
 	ret = pdb_gid_to_sid(gid, psid);
-	unbecome_root();
+	unbecome_root_uid_only();
 
 	if (ret) {
 		/* This is a mapped group */
@@ -1225,9 +1225,9 @@
 		union unid_t id;
 		BOOL ret;
 
-		become_root();
+		become_root_uid_only();
 		ret = pdb_sid_to_id(psid, &id, &type);
-		unbecome_root();
+		unbecome_root_uid_only();
 
 		if (ret) {
 			if (type != SID_NAME_USER) {
@@ -1305,9 +1305,9 @@
 	     sid_check_is_in_wellknown_domain(psid))) {
 		BOOL ret;
 
-		become_root();
+		become_root_uid_only();
 		ret = pdb_getgrsid(&map, *psid);
-		unbecome_root();
+		unbecome_root_uid_only();
 
 		if (ret) {
 			*pgid = map.gid;
@@ -1319,9 +1319,9 @@
 	if (sid_peek_check_rid(get_global_sam_sid(), psid, &rid)) {
 		BOOL ret;
 
-		become_root();
+		become_root_uid_only();
 		ret = pdb_sid_to_id(psid, &id, &type);
-		unbecome_root();
+		unbecome_root_uid_only();
 
 		if (ret) {
 			if ((type != SID_NAME_DOM_GRP) &&



More information about the samba-cvs mailing list