From 55c279f0c4cc915d2cd7bb07ce0628fe42700890 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 Reviewed-by: Stefan Metzmacher Reviewed-by: Alexander Bokovoy Autobuild-User(master): Michael Adam Autobuild-Date(master): Fri May 23 04:03:43 CEST 2014 on sn-devel-104 --- 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 5d3c54cad29..0671a1ef8ed 100644 --- a/lib/util/become_daemon.c +++ b/lib/util/become_daemon.c @@ -133,5 +133,6 @@ _PUBLIC_ void daemon_ready(const char *name) #ifdef HAVE_SYSTEMD sd_notifyf(0, "READY=1\nSTATUS=%s: ready to serve connections...", name); #endif - DEBUG(0, ("STATUS=daemon '%s' finished starting up and ready to serve connections", name)); + DEBUG(0, ("STATUS=daemon '%s' finished starting up and ready to serve " + "connections\n", name)); } -- 2.11.4.GIT