From 6869ca4032411ac79e6f2cda3cbd401c444364ef Mon Sep 17 00:00:00 2001 From: Florian Westphal Date: Sun, 2 Jun 2013 23:18:24 +0000 Subject: conntrackd: fix compiler warnings main.c:359:6: warning: ignoring return value of 'nice' [..] main.c:395:7: warning: ignoring return value of 'chdir' [..] run.c:43:17: warning: declaration of 'signal' shadows a global declaration Signed-off-by: Florian Westphal Signed-off-by: Pablo Neira Ayuso --- src/run.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/run.c') diff --git a/src/run.c b/src/run.c index 44a179f..7fa6889 100644 --- a/src/run.c +++ b/src/run.c @@ -40,14 +40,14 @@ #include #include -void killer(int signal) +void killer(int signo) { /* Signals are re-entrant, disable signal handling to avoid problems * in case we receive SIGINT and SIGTERM in a row. This function is * also called via -k from the unix socket context, we already disabled * signals in that path, so don't do it. */ - if (signal) + if (signo) sigprocmask(SIG_BLOCK, &STATE(block), NULL); local_server_destroy(&STATE(local)); -- cgit v1.2.3