summaryrefslogtreecommitdiffstats
path: root/src/filter.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/filter.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/filter.c')
-rw-r--r--src/filter.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/filter.c b/src/filter.c
index 1ae2cc5..00a5e96 100644
--- a/src/filter.c
+++ b/src/filter.c
@@ -138,7 +138,7 @@ static struct ct_filter *__filter_alloc(struct ct_filter *filter)
if (!STATE(us_filter)) {
STATE(us_filter) = ct_filter_create();
if (!STATE(us_filter)) {
- fprintf(stderr, "Can't create ignore pool!\n");
+ dlog(LOG_ERR, "Can't create ignore pool!");
exit(EXIT_FAILURE);
}
}
@@ -479,7 +479,7 @@ static struct exp_filter *exp_filter_alloc(void)
if (STATE(exp_filter) == NULL) {
STATE(exp_filter) = exp_filter_create();
if (STATE(exp_filter) == NULL) {
- fprintf(stderr, "Can't init expectation filtering!\n");
+ dlog(LOG_ERR, "Can't init expectation filtering!");
return NULL;
}
}