summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Leblond <eric@regit.org>2016-02-05 11:55:26 +0100
committerEric Leblond <eric@regit.org>2016-02-05 11:58:31 +0100
commita82d9cfe03679b82ab4d9586c93ad377e9e27149 (patch)
tree45df20d21c28f710792b0a51e966657611749024
parent1f70d2ba45e2b067777d5386b8d3f2e09be9118b (diff)
ulogd: add missing newline in log message
-rw-r--r--src/ulogd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ulogd.c b/src/ulogd.c
index c8d9376..5b9a586 100644
--- a/src/ulogd.c
+++ b/src/ulogd.c
@@ -1515,7 +1515,7 @@ int main(int argc, char* argv[])
if (daemonize){
if (daemon(0, 0) < 0) {
- ulogd_log(ULOGD_FATAL, "can't daemonize: %s (%d)",
+ ulogd_log(ULOGD_FATAL, "can't daemonize: %s (%d)\n",
errno, strerror(errno));
warn_and_exit(daemonize);
}