diff options
author | Eric Andersen <andersen@codepoet.org> | 1999-10-18 19:02:32 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 1999-10-18 19:02:32 +0000 |
commit | bed30e97005aca748a44806399c646633038daa8 (patch) | |
tree | cdba32234f059656b0279b324ae28c742692cd0c /util-linux | |
parent | 9b5871888989b16f94cbba5dd304ac444def3afd (diff) | |
download | busybox-w32-bed30e97005aca748a44806399c646633038daa8.tar.gz busybox-w32-bed30e97005aca748a44806399c646633038daa8.tar.bz2 busybox-w32-bed30e97005aca748a44806399c646633038daa8.zip |
More fixes
Diffstat (limited to 'util-linux')
-rw-r--r-- | util-linux/umount.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/util-linux/umount.c b/util-linux/umount.c index 04cd8a080..a83a508f7 100644 --- a/util-linux/umount.c +++ b/util-linux/umount.c | |||
@@ -26,8 +26,11 @@ | |||
26 | #include <fstab.h> | 26 | #include <fstab.h> |
27 | #include <errno.h> | 27 | #include <errno.h> |
28 | 28 | ||
29 | const char umount_usage[] = "\tumount {filesystem|directory}\n" | 29 | const char umount_usage[] = |
30 | "or to unmount all mounted file systems:\n\tumount -a\n"; | 30 | "Usage: umount filesystem\n" |
31 | " or: umount directory\n" | ||
32 | " or: umount -a" | ||
33 | "to unmount all mounted file systems.\n"; | ||
31 | 34 | ||
32 | static int | 35 | static int |
33 | umount_all() | 36 | umount_all() |