From: Alexander Barton Date: Wed, 22 Sep 2010 12:10:09 +0000 (+0200) Subject: Don't call sigaction() if it is not available on the system X-Git-Tag: rel-17-rc1~12 X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd-alex.git;a=commitdiff_plain;h=4a770e8e2deaa90bd99edd8132de09f778158a87 Don't call sigaction() if it is not available on the system --- 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]);