From 4a770e8e2deaa90bd99edd8132de09f778158a87 Mon Sep 17 00:00:00 2001 From: Alexander Barton Date: Wed, 22 Sep 2010 14:10:09 +0200 Subject: [PATCH] Don't call sigaction() if it is not available on the system --- src/ngircd/sighandlers.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ngircd/sighandlers.c b/src/ngircd/sighandlers.c index 80eef3e6..b8e8013d 100644 --- a/src/ngircd/sighandlers.c +++ b/src/ngircd/sighandlers.c @@ -326,7 +326,7 @@ Signals_Exit(void) sigaction(SIGPIPE, &saction, NULL); #else for (i=0; i < C_ARRAY_SIZE(signals_catch) ; i++) - sigaction(signals_catch[i], &saction, NULL); + signal(signals_catch[i], SIG_DFL); signal(SIGPIPE, SIG_DFL); #endif close(signalpipe[1]);