diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-11 07:04:23 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-11 07:04:23 +0000 |
commit | 473dae080a8a0089d5d619a56d8943d131aa451e (patch) | |
tree | 29763aae84d2c9336d9f34a5dc02c024285af60e /networking/httpd.c | |
parent | f1a7141cfcacf606ae321faa58c45617045460fe (diff) | |
download | busybox-w32-473dae080a8a0089d5d619a56d8943d131aa451e.tar.gz busybox-w32-473dae080a8a0089d5d619a56d8943d131aa451e.tar.bz2 busybox-w32-473dae080a8a0089d5d619a56d8943d131aa451e.zip |
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 7ee62c32a..d80df937a 100644 --- a/networking/httpd.c +++ b/networking/httpd.c | |||
@@ -986,7 +986,7 @@ static int sendCgi(const char *url, | |||
986 | * since httpd is run from inetd (and it can't run standalone | 986 | * since httpd is run from inetd (and it can't run standalone |
987 | * in uClinux). | 987 | * in uClinux). |
988 | */ | 988 | */ |
989 | #ifdef BB_NOMMU | 989 | #if !BB_MMU |
990 | pid = vfork(); | 990 | pid = vfork(); |
991 | #else | 991 | #else |
992 | pid = fork(); | 992 | pid = fork(); |