aboutsummaryrefslogtreecommitdiff
path: root/networking/httpd.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-04-11 07:04:23 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-04-11 07:04:23 +0000
commit473dae080a8a0089d5d619a56d8943d131aa451e (patch)
tree29763aae84d2c9336d9f34a5dc02c024285af60e /networking/httpd.c
parentf1a7141cfcacf606ae321faa58c45617045460fe (diff)
downloadbusybox-473dae080a8a0089d5d619a56d8943d131aa451e.tar.gz
add more convenient defines for [NO]MMU:
"#ifndef BB_NOMMU" is a double negative
Diffstat (limited to 'networking/httpd.c')
-rw-r--r--networking/httpd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/httpd.c b/networking/httpd.c
index 7ee62c32a..d80df937a 100644
--- a/networking/httpd.c
+++ b/networking/httpd.c
@@ -986,7 +986,7 @@ static int sendCgi(const char *url,
* since httpd is run from inetd (and it can't run standalone
* in uClinux).
*/
-#ifdef BB_NOMMU
+#if !BB_MMU
pid = vfork();
#else
pid = fork();