1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

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 4d9e8c91dc)
This commit is contained in:
Michael Adam 2007-05-22 15:13:32 +00:00 committed by Gerald (Jerry) Carter
parent 2991d3416b
commit 725e90f157

View 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 "