diff options
Diffstat (limited to 'unix.c')
-rw-r--r-- | unix.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -238,7 +238,7 @@ static void sighandler( int signal ) { /* FIXME: Calling log_message() here is not a very good idea! */ - if( signal == SIGTERM ) + if( signal == SIGTERM || signal == SIGQUIT || signal == SIGINT ) { static int first = 1; |