diff options
| author | Mark Stapp <mjs@voltanet.io> | 2021-01-22 15:33:27 -0500 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-22 15:33:27 -0500 | 
| commit | 284c5a458485d6eba8ca401c83ccef8df818f4a0 (patch) | |
| tree | 853637cdaba5a54a992289d39e7114bca24fba34 | |
| parent | f939c3a69f1eb7f3a99885132809104b95518c17 (diff) | |
| parent | 3fb4be227a00cfa6aafa117ba60c7058397b5c88 (diff) | |
Merge pull request #7906 from donaldsharp/sig_abrtfrr-8.0-dev
lib: Allow us to catch abort and do some small cleanup
| -rw-r--r-- | lib/sigevent.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sigevent.c b/lib/sigevent.c index 8d583096f6..64cec1385d 100644 --- a/lib/sigevent.c +++ b/lib/sigevent.c @@ -258,7 +258,7 @@ core_handler(int signo, siginfo_t *siginfo, void *context)  static void trap_default_signals(void)  {  	static const int core_signals[] = { -		SIGQUIT, SIGILL, +		SIGQUIT, SIGILL, SIGABRT,  #ifdef SIGEMT  		SIGEMT,  #endif  | 
