summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2006-05-10 11:39:54 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:16:56 -0500
commit7029a2ee7005c3e190e4acf35d2b4c75f4d44884 (patch)
treeab1aef69233a823cf0a052512f7e46697333461c /source3
parent26443e8c0b78f58f6ae176efe9336030ad9f6b8a (diff)
downloadsamba-7029a2ee7005c3e190e4acf35d2b4c75f4d44884.tar.gz
samba-7029a2ee7005c3e190e4acf35d2b4c75f4d44884.tar.bz2
samba-7029a2ee7005c3e190e4acf35d2b4c75f4d44884.zip
r15526: Avoid double \n.
Guenther (This used to be commit 3546187bb4a74b14071e2c23561e70e57ad13e86)
Diffstat (limited to 'source3')
-rw-r--r--source3/nsswitch/winbindd_dual.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nsswitch/winbindd_dual.c b/source3/nsswitch/winbindd_dual.c
index 05b73a9ddc..3003a314c0 100644
--- a/source3/nsswitch/winbindd_dual.c
+++ b/source3/nsswitch/winbindd_dual.c
@@ -624,7 +624,7 @@ static const char *collect_onlinestatus(TALLOC_CTX *mem_ctx)
buf = talloc_asprintf_append(buf, "\n");
- DEBUG(5,("collect_onlinestatus: %s\n", buf));
+ DEBUG(5,("collect_onlinestatus: %s", buf));
return buf;
}