aboutsummaryrefslogtreecommitdiff
path: root/df.c
diff options
context:
space:
mode:
authorerik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-05-10 05:05:45 +0000
committererik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-05-10 05:05:45 +0000
commitfd673823274fa906565261a2379e0220da57d25c (patch)
tree8db9c40b68387c1017007f5265e45c2a66ccfb0d /df.c
parente144dae9090513ce4d585206c5537ee105279792 (diff)
downloadbusybox-w32-fd673823274fa906565261a2379e0220da57d25c.tar.gz
busybox-w32-fd673823274fa906565261a2379e0220da57d25c.tar.bz2
busybox-w32-fd673823274fa906565261a2379e0220da57d25c.zip
* cp -fa now works as expected for symlinks (it didn't before)
* zcat works again (wasn't working since option parsing was broken) * more doc updates/more support for BB_FEATURE_SIMPLE_HELP -Erik git-svn-id: svn://busybox.net/trunk/busybox@530 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'df.c')
-rw-r--r--df.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/df.c b/df.c
index c38720454..417065943 100644
--- a/df.c
+++ b/df.c
@@ -28,8 +28,11 @@
28#include <sys/stat.h> 28#include <sys/stat.h>
29#include <sys/vfs.h> 29#include <sys/vfs.h>
30 30
31static const char df_usage[] = "df [filesystem ...]\n\n" 31static const char df_usage[] = "df [filesystem ...]\n"
32 "Print the filesystem space used and space available.\n"; 32#ifndef BB_FEATURE_TRIVIAL_HELP
33 "\nPrint the filesystem space used and space available.\n"
34#endif
35 ;
33 36
34extern const char mtab_file[]; /* Defined in utility.c */ 37extern const char mtab_file[]; /* Defined in utility.c */
35 38