The branch, v3-2-test has been updated
via c622c997c513d02f929beaaf8ce2e5aa249fcc47 (commit)
from 8e28052cbc923077616f4cbddc81f4f3d4f341ab (commit)
http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-2-test
- Log -----------------------------------------------------------------
commit c622c997c513d02f929beaaf8ce2e5aa249fcc47
Author: Jeremy Allison <[EMAIL PROTECTED]>
Date: Mon Jun 30 09:19:16 2008 -0700
Fix from Atte Peltomäki - [EMAIL PROTECTED] to correctly check
error code in winbindd group expansion.
Jeremy.
-----------------------------------------------------------------------
Summary of changes:
source/winbindd/winbindd_group.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Changeset truncated at 500 lines:
diff --git a/source/winbindd/winbindd_group.c b/source/winbindd/winbindd_group.c
index 63fde9f..ce6ca37 100644
--- a/source/winbindd/winbindd_group.c
+++ b/source/winbindd/winbindd_group.c
@@ -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;
}
--
Samba Shared Repository