X-Git-Url: https://tinc-vpn.org/git/browse?a=blobdiff_plain;f=src%2Fprocess.c;h=1ec450cd0d4bbb00961a8d5b0ab1f63e17f5a7e1;hb=4c403840ffdeb2a2ff04c9b7780a407920b2b794;hp=d588a3fd830f50e8d7510d5fb9cd9eb4493f7dd3;hpb=886a6f61a1f4cc48a77b42d10f34f9126377d904;p=tinc diff --git a/src/process.c b/src/process.c index d588a3fd..1ec450cd 100644 --- a/src/process.c +++ b/src/process.c @@ -1,7 +1,7 @@ /* process.c -- process management functions Copyright (C) 1999-2005 Ivo Timmermans, - 2000-2009 Guus Sliepen + 2000-2011 Guus Sliepen This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -41,7 +41,7 @@ extern char **g_argv; extern bool use_logfile; #ifndef HAVE_MINGW -sigset_t emptysigset; +static sigset_t emptysigset; #endif static void memory_full(int size) { @@ -387,6 +387,7 @@ static struct { {SIGILL, fatal_signal_handler}, {SIGPIPE, ignore_signal_handler}, {SIGCHLD, ignore_signal_handler}, + {SIGABRT, SIG_DFL}, {0, NULL} }; #endif