diff options
Diffstat (limited to 'umount.c')
-rw-r--r-- | umount.c | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -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() |