diff options
author | Johan Ström <johan@stromnet.se> | 2014-08-15 09:31:16 +0200 |
---|---|---|
committer | Johan Ström <johan@stromnet.se> | 2014-08-15 09:31:16 +0200 |
commit | 99aedae9f611beffd11a448033bd8f72c069a3c4 (patch) | |
tree | 0bf9d32ce7af86730e12aec207a9a52aace96e86 | |
parent | 1c81c87fbb47b9692ecb8cae183c33239da45299 (diff) | |
download | fcgiwrap-99aedae9f611beffd11a448033bd8f72c069a3c4.tar.xz fcgiwrap-99aedae9f611beffd11a448033bd8f72c069a3c4.zip |
SIGTERM, not SIGQUIT..
-rw-r--r-- | fcgiwrap.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -623,7 +623,7 @@ static void fcgiwrap_main(void) a.sa_flags = 0; sigemptyset( &a.sa_mask ); sigaction( SIGINT, &a, NULL ); - sigaction( SIGQUIT, &a, NULL ); + sigaction( SIGTERM, &a, NULL ); inherited_environ = environ; |