From 725e90f1572be8734c321a3d638abdf778038349 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Tue, 22 May 2007 15:13:32 +0000 Subject: r23078: 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.) (This used to be commit 4d9e8c91dc387cef37ea9035ac4483916e854732) --- source3/nsswitch/winbindd_ads.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3') diff --git a/source3/nsswitch/winbindd_ads.c b/source3/nsswitch/winbindd_ads.c index b069793d6b..042c871314 100644 --- a/source3/nsswitch/winbindd_ads.c +++ b/source3/nsswitch/winbindd_ads.c @@ -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 " -- cgit