diff options
author | Rob Landley <rob@landley.net> | 2014-07-17 22:50:49 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2014-07-17 22:50:49 -0500 |
commit | c880061f511e85d55afe3966f5eda0df7c3ebb56 (patch) | |
tree | f6fedbd6dbe1f819bfa63210eb61b25ca6476ef6 /toys/pending/telnetd.c | |
parent | fc7bc38af05fc882472d310a0b68648ed990ef2d (diff) | |
download | toybox-c880061f511e85d55afe3966f5eda0df7c3ebb56.tar.gz |
Use libc daemon() instead of pending daemonize.
Diffstat (limited to 'toys/pending/telnetd.c')
-rw-r--r-- | toys/pending/telnetd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/pending/telnetd.c b/toys/pending/telnetd.c index 3c0f8e39..4198e63f 100644 --- a/toys/pending/telnetd.c +++ b/toys/pending/telnetd.c @@ -317,7 +317,7 @@ void telnetd_main(void) master_fd = listen_socket(); fcntl(master_fd, F_SETFD, FD_CLOEXEC); if (master_fd > TT.gmax_fd) TT.gmax_fd = master_fd; - if (!(toys.optflags & FLAG_F)) daemonize(); + if (!(toys.optflags & FLAG_F)) daemon(0, 0); } else { pty_fd = new_session(master_fd); //master_fd = 0 if (pty_fd > TT.gmax_fd) TT.gmax_fd = pty_fd; |