From 8f4aaae28c88c707853f8f28d8babc4efe0c1bf6 Mon Sep 17 00:00:00 2001 From: Martin Nagy Date: Wed, 3 Mar 2010 08:33:22 +0100 Subject: Add forgotten \n in DEBUG statements Logs from confdb with missing '\n' in the DEBUG statements annoyed me so I decided to fix them. I also made a quick grep through the code and found other places so I fixed them too. --- src/tools/files.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/tools') diff --git a/src/tools/files.c b/src/tools/files.c index 6c6447059..90920b6cf 100644 --- a/src/tools/files.c +++ b/src/tools/files.c @@ -172,7 +172,7 @@ static int remove_tree_with_ctx(TALLOC_CTX *mem_ctx, rootdir = opendir(root); if (rootdir == NULL) { ret = errno; - DEBUG(1, ("Cannot open directory %s [%d][%s]", + DEBUG(1, ("Cannot open directory %s [%d][%s]\n", root, ret, strerror(ret))); goto fail; } -- cgit