From bee121ee9b749b47da5ad3f876772c8eae7c03d3 Mon Sep 17 00:00:00 2001 From: Arturo Borrero Gonzalez Date: Fri, 4 Nov 2016 11:37:12 +0100 Subject: 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 Signed-off-by: Pablo Neira Ayuso --- src/ctnl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/ctnl.c') diff --git a/src/ctnl.c b/src/ctnl.c index 10b5f4c..9d5dcb8 100644 --- a/src/ctnl.c +++ b/src/ctnl.c @@ -404,8 +404,8 @@ int ctnl_init(void) else if (CONFIG(flags) & CTD_SYNC_MODE) STATE(mode) = &sync_mode; else { - fprintf(stderr, "WARNING: No running mode specified. " - "Defaulting to statistics mode.\n"); + dlog(LOG_WARNING, "No running mode specified. " + "Defaulting to statistics mode."); CONFIG(flags) |= CTD_STATS_MODE; STATE(mode) = &stats_mode; } -- cgit v1.2.3