X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fprocess.c;h=7c8d31f6a236e999be33960288be2eabde7b2e25;hp=7373a70c2ab0118e4ccd96362fb303aa91178843;hb=8e74c5bee48f2ef363193044d5309a65e91c70d8;hpb=ffb88ff6410f33de92db108bd1e0c3a915368214 diff --git a/src/process.c b/src/process.c index 7373a70c..7c8d31f6 100644 --- a/src/process.c +++ b/src/process.c @@ -17,7 +17,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - $Id: process.c,v 1.1.2.30 2001/10/31 12:50:24 guus Exp $ + $Id: process.c,v 1.1.2.31 2001/10/31 20:37:54 guus Exp $ */ #include "config.h" @@ -409,7 +409,7 @@ ignore_signal_handler(int a, siginfo_t *info, void *b) { if(debug_lvl >= DEBUG_SCARY_THINGS) { - syslog(LOG_WARNING, _("Got unexpected signal %d (%s)"), a, strsignal(a)); + syslog(LOG_DEBUG, _("Ignored signal %d (%s)"), a, strsignal(a)); cp_trace(); } } @@ -450,6 +450,7 @@ setup_signals(void) sigaction(i, &act, NULL); } + /* If we didn't detach, allow coredumps */ if(!do_detach) sighandlers[3].handler = SIG_DFL;