From 487fb706beafea4fa530cb14738b6b9376d5d1a0 Mon Sep 17 00:00:00 2001 From: Stefan Ritt Date: Thu, 30 Apr 2015 13:19:15 +0200 Subject: [PATCH] Added missing flag reset --- src/elogd.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/elogd.c b/src/elogd.c index 244f408f..54a15150 100755 --- a/src/elogd.c +++ b/src/elogd.c @@ -29369,6 +29369,7 @@ void server_loop(void) sigaction(SIGINT, &ctrlc_handle, NULL); ignore_handle.sa_handler = SIG_IGN; + ignore_handle.sa_flags = 0; sigaction(SIGPIPE, &ignore_handle, NULL); hup_handle.sa_handler = hup_handler;