From 331c7c4b676ee2df1914090060f055548d31cc37 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Thu, 22 May 2014 08:48:32 +0200 Subject: [PATCH] smbd: add missing newline to debug message in daemon_ready() Wrap overly long line while touching it anyways. Signed-off-by: Michael Adam --- lib/util/become_daemon.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/util/become_daemon.c b/lib/util/become_daemon.c index 35c8b32..d063277 100644 --- a/lib/util/become_daemon.c +++ b/lib/util/become_daemon.c @@ -133,5 +133,6 @@ _PUBLIC_ void daemon_ready(const char *daemon) #ifdef HAVE_SYSTEMD sd_notifyf(0, "READY=1\nSTATUS=%s: ready to serve connections...", daemon); #endif - DEBUG(0, ("STATUS=daemon '%s' finished starting up and ready to serve connections", daemon)); + DEBUG(0, ("STATUS=daemon '%s' finished starting up and ready to serve " + "connections\n", daemon)); } -- 1.9.1