diff options
author | Denis Vlasenko | 2008-05-08 15:26:06 +0000 |
---|---|---|
committer | Denis Vlasenko | 2008-05-08 15:26:06 +0000 |
commit | a3087ca7495e33b19b122869d17defeb9c933d19 (patch) | |
tree | fa652fe429d78c0b2fad2c42c52c98e92bb3288d /networking/httpd.c | |
parent | 0abe9d96eee3bcdcdd766a863eb711ec004f2f4f (diff) | |
download | busybox-a3087ca7495e33b19b122869d17defeb9c933d19.zip busybox-a3087ca7495e33b19b122869d17defeb9c933d19.tar.gz |
Apply post-1.10.1 patches
Bump version to 1.10.2
Diffstat (limited to 'networking/httpd.c')
-rw-r--r-- | networking/httpd.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/networking/httpd.c b/networking/httpd.c index 5e6037c..2c5455b 100644 --- a/networking/httpd.c +++ b/networking/httpd.c @@ -1457,6 +1457,11 @@ static void send_cgi_and_exit( } } #endif + /* restore default signal dispositions for CGI process */ + signal(SIGCHLD, SIG_DFL); + signal(SIGPIPE, SIG_DFL); + signal(SIGHUP, SIG_DFL); + execv(fullpath, argv); if (verbose) bb_perror_msg("exec %s", fullpath); |