inetd: open log after daemonization

This commit is contained in:
Denis Vlasenko 2007-01-14 02:03:28 +00:00
parent 7a431b3715
commit ffcef2d1f7

View File

@ -1272,8 +1272,6 @@ inetd_main(int argc, char *argv[])
LastArg = envp[-1] + strlen(envp[-1]);
#endif
openlog(applet_name, LOG_PID | LOG_NOWAIT, LOG_DAEMON);
opt = getopt32(argc, argv, "R:f", &stoomany);
if(opt & 1) {
toomany = xatoi_u(stoomany);
@ -1298,6 +1296,7 @@ inetd_main(int argc, char *argv[])
#else
bb_sanitize_stdio(!(opt & 2));
#endif
openlog(applet_name, LOG_PID | LOG_NOWAIT, LOG_DAEMON);
logmode = LOGMODE_SYSLOG;
if (uid == 0) {