1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-03 13:47:25 +03:00

Fix from Atte Peltomki - atte.peltomaki@f-secure.com to correctly check

error code in winbindd group expansion.
Jeremy.
(This used to be commit e321377174f579ba57a70f260f4d4bc234a07439)
This commit is contained in:
Jeremy Allison 2008-06-30 09:20:05 -07:00
parent 16e44ee112
commit 4aaa3a0fac

View File

@ -442,7 +442,7 @@ static NTSTATUS expand_groups( TALLOC_CTX *ctx,
&sid_mem[j],
&new_groups,
&new_groups_size);
if (NT_STATUS_IS_OK(status)) {
if (!NT_STATUS_IS_OK(status)) {
goto out;
}