diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-08-13 11:09:30 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-08-13 11:09:30 +0000 |
commit | 319f8ebef8a9e48cb74b220d4585552928549266 (patch) | |
tree | a6f292129a04b9eba6d2a2aef353e49e8b5a14e0 /findutils | |
parent | f5635f4d327c7f4ce34026c64548585dd7b59ffc (diff) | |
download | busybox-w32-319f8ebef8a9e48cb74b220d4585552928549266.tar.gz busybox-w32-319f8ebef8a9e48cb74b220d4585552928549266.tar.bz2 busybox-w32-319f8ebef8a9e48cb74b220d4585552928549266.zip |
httpd: round down sendfile byte count to 64k
*: style fixes
Diffstat (limited to 'findutils')
-rw-r--r-- | findutils/find.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/findutils/find.c b/findutils/find.c index ea789a01c..60b2a75aa 100644 --- a/findutils/find.c +++ b/findutils/find.c | |||
@@ -475,8 +475,8 @@ static action*** parse_params(char **argv) | |||
475 | "-o\0" | 475 | "-o\0" |
476 | USE_FEATURE_FIND_NOT( "!\0" ) | 476 | USE_FEATURE_FIND_NOT( "!\0" ) |
477 | #if ENABLE_DESKTOP | 477 | #if ENABLE_DESKTOP |
478 | "-and\0" | 478 | "-and\0" |
479 | "-or\0" | 479 | "-or\0" |
480 | USE_FEATURE_FIND_NOT( "-not\0" ) | 480 | USE_FEATURE_FIND_NOT( "-not\0" ) |
481 | #endif | 481 | #endif |
482 | "-print\0" | 482 | "-print\0" |
@@ -487,7 +487,7 @@ static action*** parse_params(char **argv) | |||
487 | USE_FEATURE_FIND_EXEC( "-exec\0" ) | 487 | USE_FEATURE_FIND_EXEC( "-exec\0" ) |
488 | USE_FEATURE_FIND_PAREN( "(\0" ) | 488 | USE_FEATURE_FIND_PAREN( "(\0" ) |
489 | /* All options starting from here require argument */ | 489 | /* All options starting from here require argument */ |
490 | "-name\0" | 490 | "-name\0" |
491 | USE_FEATURE_FIND_PATH( "-path\0" ) | 491 | USE_FEATURE_FIND_PATH( "-path\0" ) |
492 | USE_FEATURE_FIND_REGEX( "-regex\0" ) | 492 | USE_FEATURE_FIND_REGEX( "-regex\0" ) |
493 | USE_FEATURE_FIND_TYPE( "-type\0" ) | 493 | USE_FEATURE_FIND_TYPE( "-type\0" ) |