diff options
author | Michael Adam <obnox@samba.org> | 2007-05-22 15:13:32 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:22:43 -0500 |
commit | 725e90f1572be8734c321a3d638abdf778038349 (patch) | |
tree | 5c8b0cf3650261387d93f8b8075ec8dbba230320 | |
parent | 2991d3416b688a9b29ac891a9e5571099c333267 (diff) | |
download | samba-725e90f1572be8734c321a3d638abdf778038349.tar.gz samba-725e90f1572be8734c321a3d638abdf778038349.tar.bz2 samba-725e90f1572be8734c321a3d638abdf778038349.zip |
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)
-rw-r--r-- | source3/nsswitch/winbindd_ads.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 " |