summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohan Ström <johan@stromnet.se>2014-08-15 09:31:16 +0200
committerJohan Ström <johan@stromnet.se>2014-08-15 09:31:16 +0200
commit99aedae9f611beffd11a448033bd8f72c069a3c4 (patch)
tree0bf9d32ce7af86730e12aec207a9a52aace96e86
parent1c81c87fbb47b9692ecb8cae183c33239da45299 (diff)
downloadfcgiwrap-99aedae9f611beffd11a448033bd8f72c069a3c4.tar.xz
fcgiwrap-99aedae9f611beffd11a448033bd8f72c069a3c4.zip
SIGTERM, not SIGQUIT..
-rw-r--r--fcgiwrap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fcgiwrap.c b/fcgiwrap.c
index 9f12396..a2c88af 100644
--- a/fcgiwrap.c
+++ b/fcgiwrap.c
@@ -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;