svn commit: samba r23078 - in branches/SAMBA_3_0/source/nsswitch: .

obnox at samba.org obnox at samba.org
Tue May 22 15:13:32 GMT 2007


Author: obnox
Date: 2007-05-22 15:13:32 +0000 (Tue, 22 May 2007)
New Revision: 23078

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

Log:
Don't handle return code NT_STATUS_NONE_MAPPED from lookup sids
as an error. (This is purely cosmetic here, issuing a success
message at the end.)


Modified:
   branches/SAMBA_3_0/source/nsswitch/winbindd_ads.c


Changeset:
Modified: branches/SAMBA_3_0/source/nsswitch/winbindd_ads.c
===================================================================
--- branches/SAMBA_3_0/source/nsswitch/winbindd_ads.c	2007-05-22 14:31:26 UTC (rev 23077)
+++ branches/SAMBA_3_0/source/nsswitch/winbindd_ads.c	2007-05-22 15:13:32 UTC (rev 23078)
@@ -1016,7 +1016,7 @@
 	else if (NT_STATUS_EQUAL(status, NT_STATUS_NONE_MAPPED)) {
 		DEBUG(10, ("lookup_groupmem: lsa_lookup_sids could "
 			   "not map any SIDs at all.\n"));
-		goto done;
+		/* Don't handle this as an error here... */
 	}
 	else if (!NT_STATUS_IS_OK(status)) {
 		DEBUG(10, ("lookup_groupmem: Error looking up %d "



More information about the samba-cvs mailing list