summaryrefslogtreecommitdiffstats
path: root/src/systemd.c
diff options
context:
space:
mode:
authorArturo Borrero Gonzalez <arturo@debian.org>2016-11-04 11:37:12 +0100
committerPablo Neira Ayuso <pablo@netfilter.org>2016-11-09 00:26:04 +0100
commitbee121ee9b749b47da5ad3f876772c8eae7c03d3 (patch)
tree9e9b6671404e86b81d7eaf860a71eff118c23e79 /src/systemd.c
parentccb1c8b58f91b32dbb5dc8b9493d1a157946b7e7 (diff)
conntrackd: replace fprintf calls with dlog()
Review fprintf() and perror() calls and replace them with proper logs, since it now supports being called anytime during runtime. While at it, several messages are fixed, deleting \n, adjusting coding style and some typos. Also, the 'conntrackd cannot start, please review your configuration' is printed before closing the log engine. Signed-off-by: Arturo Borrero Gonzalez <arturo@debian.org> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'src/systemd.c')
-rw-r--r--src/systemd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/systemd.c b/src/systemd.c
index 4eb880c..2c5daaf 100644
--- a/src/systemd.c
+++ b/src/systemd.c
@@ -42,8 +42,8 @@ void sd_ct_watchdog_init(void)
ret = sd_watchdog_enabled(0, &sd_watchdog_interval);
if (ret < 0) {
- fprintf(stderr, "WARNING: failed to get watchdog details from"
- " systemd: %s\n", strerror(-ret));
+ dlog(LOG_WARNING, "failed to get watchdog details from "
+ "systemd: %s", strerror(-ret));
return;
} else if (ret == 0) {
/* no watchdog required */