From 7029a2ee7005c3e190e4acf35d2b4c75f4d44884 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Wed, 10 May 2006 11:39:54 +0000 Subject: r15526: Avoid double \n. Guenther (This used to be commit 3546187bb4a74b14071e2c23561e70e57ad13e86) --- source3/nsswitch/winbindd_dual.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- cgit