summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2003-02-25 23:54:40 +0000
committerTim Potter <tpot@samba.org>2003-02-25 23:54:40 +0000
commitdf49463e62e4be7535485b668f00db287ff581f3 (patch)
treeff1d2c12dab50c7d1c2a7c3018d36054091b7c5f
parent8de62f7896a53084e87b95c013d8693214c8ab85 (diff)
downloadsamba-df49463e62e4be7535485b668f00db287ff581f3.tar.gz
samba-df49463e62e4be7535485b668f00db287ff581f3.tar.xz
samba-df49463e62e4be7535485b668f00db287ff581f3.zip
Merge: newline on debug message.
-rw-r--r--source/nsswitch/winbindd_group.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/nsswitch/winbindd_group.c b/source/nsswitch/winbindd_group.c
index 6b2f05f436f..94a826fbbcc 100644
--- a/source/nsswitch/winbindd_group.c
+++ b/source/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;
}