From: Günther Deschner Date: Wed, 10 May 2006 11:39:54 +0000 (+0000) Subject: r15526: Avoid double \n. X-Git-Url: http://git.samba.org/samba.git/?p=jra%2Fsamba%2F.git;a=commitdiff_plain;h=7029a2ee7005c3e190e4acf35d2b4c75f4d44884 r15526: Avoid double \n. Guenther (This used to be commit 3546187bb4a74b14071e2c23561e70e57ad13e86) --- diff --git a/source3/nsswitch/winbindd_dual.c b/source3/nsswitch/winbindd_dual.c index 05b73a9ddc8..3003a314c03 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; }