diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-05-08 15:26:06 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-05-08 15:26:06 +0000 |
commit | a3087ca7495e33b19b122869d17defeb9c933d19 (patch) | |
tree | fa652fe429d78c0b2fad2c42c52c98e92bb3288d /networking | |
parent | 0abe9d96eee3bcdcdd766a863eb711ec004f2f4f (diff) | |
download | busybox-w32-a3087ca7495e33b19b122869d17defeb9c933d19.tar.gz busybox-w32-a3087ca7495e33b19b122869d17defeb9c933d19.tar.bz2 busybox-w32-a3087ca7495e33b19b122869d17defeb9c933d19.zip |
Apply post-1.10.1 patches
Bump version to 1.10.2
Diffstat (limited to '')
-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 5e6037cbe..2c5455bf7 100644 --- a/networking/httpd.c +++ b/networking/httpd.c | |||
@@ -1457,6 +1457,11 @@ static void send_cgi_and_exit( | |||
1457 | } | 1457 | } |
1458 | } | 1458 | } |
1459 | #endif | 1459 | #endif |
1460 | /* restore default signal dispositions for CGI process */ | ||
1461 | signal(SIGCHLD, SIG_DFL); | ||
1462 | signal(SIGPIPE, SIG_DFL); | ||
1463 | signal(SIGHUP, SIG_DFL); | ||
1464 | |||
1460 | execv(fullpath, argv); | 1465 | execv(fullpath, argv); |
1461 | if (verbose) | 1466 | if (verbose) |
1462 | bb_perror_msg("exec %s", fullpath); | 1467 | bb_perror_msg("exec %s", fullpath); |