diff options
author | Denis Vlasenko | 2007-03-26 13:20:54 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-03-26 13:20:54 +0000 |
commit | 5a142025d372ae5dff7d7cf98f442edaafd1dc30 (patch) | |
tree | 19d222f7d7040945cf92e239055dfdd00b8656bc /networking/httpd.c | |
parent | bb7fcb4229fd5ff583039f26ca1c06340e3f09ea (diff) | |
download | busybox-5a142025d372ae5dff7d7cf98f442edaafd1dc30.zip busybox-5a142025d372ae5dff7d7cf98f442edaafd1dc30.tar.gz |
move everything to new NOMMU helpers, except udhcp
Diffstat (limited to 'networking/httpd.c')
-rw-r--r-- | networking/httpd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/httpd.c b/networking/httpd.c index 72b03de..b8d9b6b 100644 --- a/networking/httpd.c +++ b/networking/httpd.c @@ -2044,6 +2044,6 @@ int httpd_main(int argc, char *argv[]) return miniHttpd_inetd(); if (!(opt & OPT_FOREGROUND)) - xdaemon(1, 0); /* don't change current directory */ + bb_daemonize(0); /* don't change current directory */ return miniHttpd(config->server_socket); } |