diff options
author | Andrew Bartlett <abartlet@samba.org> | 2003-02-22 00:54:08 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2003-02-22 00:54:08 +0000 |
commit | 301ebd6324138b9628638c0020597227d0cbf959 (patch) | |
tree | 782d63826e99582daad092c234e121011ccb8977 /source3/nsswitch/winbindd_group.c | |
parent | 3d730f89cf3c30d8b17f0d35d2cdf28db53296e2 (diff) | |
download | samba-301ebd6324138b9628638c0020597227d0cbf959.tar.gz samba-301ebd6324138b9628638c0020597227d0cbf959.tar.bz2 samba-301ebd6324138b9628638c0020597227d0cbf959.zip |
Fix a DEBUG() formatting, add some more debug to our SID pulling code and
inline the call to prs_copy_all_data_out() so that we can know we are not
overrunning our buffer.
Also check more return values.
Andrew Bartlett
(This used to be commit e3b73d5d658584428c81c9ef3ccf024687a56e2f)
Diffstat (limited to 'source3/nsswitch/winbindd_group.c')
-rw-r--r-- | source3/nsswitch/winbindd_group.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nsswitch/winbindd_group.c b/source3/nsswitch/winbindd_group.c index 6b2f05f436..94a826fbbc 100644 --- a/source3/nsswitch/winbindd_group.c +++ b/source3/nsswitch/winbindd_group.c @@ -434,7 +434,7 @@ static BOOL get_sam_group_entries(struct getent_state *ent) status = domain->methods->enum_dom_groups(domain, mem_ctx, &num_entries, &sam_grp_entries); if (!NT_STATUS_IS_OK(status)) { - DEBUG(3, ("get_sam_group_entries: could not enumerate domain groups! Error: %s", nt_errstr(status))); + DEBUG(3, ("get_sam_group_entries: could not enumerate domain groups! Error: %s\n", nt_errstr(status))); result = False; goto done; } |