diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2009-03-09 17:22:16 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2009-03-09 17:22:16 +0000 |
commit | 5b28d314e7a731c5cee51e811e892188e800ea99 (patch) | |
tree | c87a4c786cfa13ea0005313e5bacefbda63db51a /networking | |
parent | 1a6adbd71b0ff7b97d51e949ef13882da9910d86 (diff) | |
download | busybox-5b28d314e7a731c5cee51e811e892188e800ea99.tar.gz |
ftpd: add LOG_NDELAY to openlog
Diffstat (limited to 'networking')
-rw-r--r-- | networking/ftpd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/networking/ftpd.c b/networking/ftpd.c index 2a7d8006b..29589d185 100644 --- a/networking/ftpd.c +++ b/networking/ftpd.c @@ -828,7 +828,8 @@ int ftpd_main(int argc, char **argv) * failure */ } - openlog(applet_name, LOG_PID, LOG_DAEMON); + /* LOG_NDELAY is needed since we may chroot later */ + openlog(applet_name, LOG_PID | LOG_NDELAY, LOG_DAEMON); logmode |= LOGMODE_SYSLOG; if (!(opts & OPT_v)) logmode = LOGMODE_SYSLOG; |