aboutsummaryrefslogtreecommitdiff
path: root/networking/tcpudp.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-11-09 00:15:11 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-11-09 00:15:11 +0000
commit3fa36e235021af5810333a52876d29efc661ad60 (patch)
tree71249d42a3a17ebf3c166826b71fe1453dcb6756 /networking/tcpudp.c
parent73cc54388daeae391698b8afe788f421cf9e394d (diff)
downloadbusybox-w32-3fa36e235021af5810333a52876d29efc661ad60.tar.gz
busybox-w32-3fa36e235021af5810333a52876d29efc661ad60.tar.bz2
busybox-w32-3fa36e235021af5810333a52876d29efc661ad60.zip
*: a bit of code shrink
function old new delta stop_handler 41 38 -3 sulogin_main 508 504 -4 got_cont 4 - -4 cont_handler 11 - -11 startservice 309 297 -12 processorstart 423 409 -14 tcpudpsvd_main 1861 1843 -18 ------------------------------------------------------------------------------ (add/remove: 0/2 grow/shrink: 0/5 up/down: 0/-66) Total: -66 bytes
Diffstat (limited to 'networking/tcpudp.c')
-rw-r--r--networking/tcpudp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/networking/tcpudp.c b/networking/tcpudp.c
index 0d8217e02..3b73f213f 100644
--- a/networking/tcpudp.c
+++ b/networking/tcpudp.c
@@ -497,9 +497,9 @@ int tcpudpsvd_main(int argc UNUSED_PARAM, char **argv)
497 497
498 xdup2(0, 1); 498 xdup2(0, 1);
499 499
500 signal(SIGTERM, SIG_DFL); 500 signal(SIGPIPE, SIG_DFL); /* this one was SIG_IGNed */
501 signal(SIGPIPE, SIG_DFL); 501 /* Non-ignored signals revert to SIG_DFL on exec anyway */
502 signal(SIGCHLD, SIG_DFL); 502 /*signal(SIGCHLD, SIG_DFL);*/
503 sig_unblock(SIGCHLD); 503 sig_unblock(SIGCHLD);
504 504
505#ifdef SSLSVD 505#ifdef SSLSVD