aboutsummaryrefslogtreecommitdiff
path: root/umount.c
diff options
context:
space:
mode:
Diffstat (limited to 'umount.c')
-rw-r--r--umount.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/umount.c b/umount.c
index 04cd8a080..a83a508f7 100644
--- a/umount.c
+++ b/umount.c
@@ -26,8 +26,11 @@
26#include <fstab.h> 26#include <fstab.h>
27#include <errno.h> 27#include <errno.h>
28 28
29const char umount_usage[] = "\tumount {filesystem|directory}\n" 29const 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
32static int 35static int
33umount_all() 36umount_all()