r23078: Don't handle return code NT_STATUS_NONE_MAPPED from lookup sids
authorMichael Adam <obnox@samba.org>
Tue, 22 May 2007 15:13:32 +0000 (15:13 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 17:22:43 +0000 (12:22 -0500)
as an error. (This is purely cosmetic here, issuing a success
message at the end.)

source/nsswitch/winbindd_ads.c

index b069793d6bd07e0372cb14642524c7220b440319..042c871314dc0dfe0d0d17aa3e023c605572ffaa 100644 (file)
@@ -1016,7 +1016,7 @@ static NTSTATUS lookup_groupmem(struct winbindd_domain *domain,
        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 "