*: 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
This commit is contained in:
Denis Vlasenko
2008-11-09 00:15:11 +00:00
parent 73cc54388d
commit 3fa36e2350
8 changed files with 24 additions and 23 deletions

View File

@@ -131,7 +131,8 @@ int nc_main(int argc, char **argv)
if (wsecs) {
alarm(0);
signal(SIGALRM, SIG_DFL);
/* Non-ignored siganls revert to SIG_DFL on exec anyway */
/*signal(SIGALRM, SIG_DFL);*/
}
/* -e given? */

View File

@@ -497,9 +497,9 @@ int tcpudpsvd_main(int argc UNUSED_PARAM, char **argv)
xdup2(0, 1);
signal(SIGTERM, SIG_DFL);
signal(SIGPIPE, SIG_DFL);
signal(SIGCHLD, SIG_DFL);
signal(SIGPIPE, SIG_DFL); /* this one was SIG_IGNed */
/* Non-ignored signals revert to SIG_DFL on exec anyway */
/*signal(SIGCHLD, SIG_DFL);*/
sig_unblock(SIGCHLD);
#ifdef SSLSVD