diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2009-03-11 14:40:00 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2009-03-11 14:40:00 +0000 |
commit | a19e64933c600b7f05232ad80bb5db85c115e42d (patch) | |
tree | bb832b3fc677066c155b19eaccea085298b1b718 /networking/inetd.c | |
parent | 4774179cb9e04030485773adf2b7b1055a10faeb (diff) | |
download | busybox-w32-a19e64933c600b7f05232ad80bb5db85c115e42d.tar.gz busybox-w32-a19e64933c600b7f05232ad80bb5db85c115e42d.tar.bz2 busybox-w32-a19e64933c600b7f05232ad80bb5db85c115e42d.zip |
docs/logging_and_backgrounding.txt: new mini-doc
dnsd: remove statics, remove nerly-useless SIGINT handler
crond: correct more of logfile to 0666 (as usual, umask allows
user to remove unwanted bits).
nameif: print errors to stderr too, not just to syslog
function old new delta
udhcp_read_interface 308 306 -2
ttl 4 - -4
fileconf 4 - -4
dnsentry 4 - -4
interrupt 19 - -19
dnsd_main 1463 1394 -69
------------------------------------------------------------------------------
(add/remove: 0/4 grow/shrink: 0/2 up/down: 0/-102) Total: -102 bytes
text data bss dec hex filename
808161 476 7864 816501 c7575 busybox_old
807994 468 7856 816318 c74be busybox_unstripped
Diffstat (limited to 'networking/inetd.c')
-rw-r--r-- | networking/inetd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/inetd.c b/networking/inetd.c index bf018d774..72d51010e 100644 --- a/networking/inetd.c +++ b/networking/inetd.c | |||
@@ -1299,7 +1299,7 @@ int inetd_main(int argc UNUSED_PARAM, char **argv) | |||
1299 | if (sep->se_builtin) { | 1299 | if (sep->se_builtin) { |
1300 | if (pid) { /* "pid" is -1: we did vfork */ | 1300 | if (pid) { /* "pid" is -1: we did vfork */ |
1301 | close(sep->se_fd); /* listening socket */ | 1301 | close(sep->se_fd); /* listening socket */ |
1302 | logmode = 0; /* make xwrite etc silent */ | 1302 | logmode = LOGMODE_NONE; /* make xwrite etc silent */ |
1303 | } | 1303 | } |
1304 | restore_sigmask(&omask); | 1304 | restore_sigmask(&omask); |
1305 | if (sep->se_socktype == SOCK_STREAM) | 1305 | if (sep->se_socktype == SOCK_STREAM) |