Always use the default signal handler for ABRT signals.

This will allow coredumps to be generated when tinc is daemonized.
Also add the -kABRT option.
This commit is contained in:
Guus Sliepen 2011-05-08 12:40:44 +02:00
parent eacb5a28fb
commit 257cb6ac60
3 changed files with 6 additions and 6 deletions

View file

@ -546,6 +546,7 @@ static struct {
{SIGCHLD, ignore_signal_handler},
{SIGALRM, sigalrm_handler},
{SIGWINCH, sigwinch_handler},
{SIGABRT, SIG_DFL},
{0, NULL}
};
#endif