diff options
author | Denis Vlasenko | 2007-04-11 07:04:23 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-04-11 07:04:23 +0000 |
commit | 473dae080a8a0089d5d619a56d8943d131aa451e (patch) | |
tree | 29763aae84d2c9336d9f34a5dc02c024285af60e /networking/httpd.c | |
parent | f1a7141cfcacf606ae321faa58c45617045460fe (diff) | |
download | busybox-473dae080a8a0089d5d619a56d8943d131aa451e.zip busybox-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/httpd.c b/networking/httpd.c index 7ee62c3..d80df93 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(); |