diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-01-14 13:12:06 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-01-14 13:12:06 +0000 |
commit | d97c9244b18dbfc373465a111c9a17a28e84477d (patch) | |
tree | 141a5ae1628989a73dcb87419bbe555746e8b333 /networking/inetd.c | |
parent | b8b81a6f8fc8083ebef4a5557fe8e2121d623152 (diff) | |
download | busybox-w32-d97c9244b18dbfc373465a111c9a17a28e84477d.tar.gz busybox-w32-d97c9244b18dbfc373465a111c9a17a28e84477d.tar.bz2 busybox-w32-d97c9244b18dbfc373465a111c9a17a28e84477d.zip |
Rename bb_sanitize_stdio -> bb_sanitize_server_stdio
(name is still bad - it doesn't hint that function
may do daemonization trick for you if asked to).
Small fixes to fakeidentd.
Diffstat (limited to 'networking/inetd.c')
-rw-r--r-- | networking/inetd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/inetd.c b/networking/inetd.c index fd2c88a6b..01f38ad60 100644 --- a/networking/inetd.c +++ b/networking/inetd.c | |||
@@ -1292,9 +1292,9 @@ inetd_main(int argc, char *argv[]) | |||
1292 | /* reexec for vfork() do continue parent */ | 1292 | /* reexec for vfork() do continue parent */ |
1293 | vfork_daemon_rexec(0, 0, argc, argv, "-f"); | 1293 | vfork_daemon_rexec(0, 0, argc, argv, "-f"); |
1294 | } | 1294 | } |
1295 | bb_sanitize_stdio(0); | 1295 | bb_sanitize_server_stdio(0); |
1296 | #else | 1296 | #else |
1297 | bb_sanitize_stdio(!(opt & 2)); | 1297 | bb_sanitize_server_stdio(!(opt & 2)); |
1298 | #endif | 1298 | #endif |
1299 | openlog(applet_name, LOG_PID | LOG_NOWAIT, LOG_DAEMON); | 1299 | openlog(applet_name, LOG_PID | LOG_NOWAIT, LOG_DAEMON); |
1300 | logmode = LOGMODE_SYSLOG; | 1300 | logmode = LOGMODE_SYSLOG; |