diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-29 19:07:01 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-29 19:07:01 +0000 |
commit | 5d499e1600e2fd627fba035faf3cb78f6333dcde (patch) | |
tree | 52f5401ce1e1ee881aaa656ce94764a92fad7609 /networking | |
parent | e2fb719ba3463955f349ce63228981943f00bfaa (diff) | |
download | busybox-w32-5d499e1600e2fd627fba035faf3cb78f6333dcde.tar.gz busybox-w32-5d499e1600e2fd627fba035faf3cb78f6333dcde.tar.bz2 busybox-w32-5d499e1600e2fd627fba035faf3cb78f6333dcde.zip |
find: a lot more compliant to 'standard' find
(we were not respecting order of actions!).
Add -o and -a handling.
Diffstat (limited to 'networking')
-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 e927c955f..b982cb12f 100644 --- a/networking/httpd.c +++ b/networking/httpd.c | |||
@@ -391,7 +391,7 @@ static void parse_conf(const char *path, int flag) | |||
391 | FILE *f; | 391 | FILE *f; |
392 | #if ENABLE_FEATURE_HTTPD_BASIC_AUTH | 392 | #if ENABLE_FEATURE_HTTPD_BASIC_AUTH |
393 | Htaccess *prev, *cur; | 393 | Htaccess *prev, *cur; |
394 | #elif CONFIG_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES | 394 | #elif ENABLE_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES |
395 | Htaccess *cur; | 395 | Htaccess *cur; |
396 | #endif | 396 | #endif |
397 | 397 | ||