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/sync-mode.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/sync-mode.c') diff --git a/src/sync-mode.c b/src/sync-mode.c index 8fe65f1..082e2ce 100644 --- a/src/sync-mode.c +++ b/src/sync-mode.c @@ -377,8 +377,8 @@ static int init_sync(void) else if (CONFIG(flags) & CTD_SYNC_NOTRACK) STATE_SYNC(sync) = &sync_notrack; else { - fprintf(stderr, "WARNING: No synchronization mode specified. " - "Defaulting to FT-FW mode.\n"); + dlog(LOG_WARNING, "No synchronization mode specified. " + "Defaulting to FT-FW mode."); CONFIG(flags) |= CTD_SYNC_FTFW; STATE_SYNC(sync) = &sync_ftfw; } -- cgit v1.2.3