summaryrefslogtreecommitdiff
path: root/sbin/mount_vnd
diff options
context:
space:
mode:
authorJoel Sing <jsing@cvs.openbsd.org>2008-08-15 14:41:22 +0000
committerJoel Sing <jsing@cvs.openbsd.org>2008-08-15 14:41:22 +0000
commitab96b125e211b5149f38361aa8b283a1f59a5f06 (patch)
tree42c7b3a498ac11e6a682acf678ad3d55f135bea5 /sbin/mount_vnd
parent28970feda2a493f90c65b8ffb82852da37c8125b (diff)
Add -s option to usage().
Prompted by jmc@ ok jmc@
Diffstat (limited to 'sbin/mount_vnd')
-rw-r--r--sbin/mount_vnd/mount_vnd.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/sbin/mount_vnd/mount_vnd.c b/sbin/mount_vnd/mount_vnd.c
index 70441e42b51..1da332ba57c 100644
--- a/sbin/mount_vnd/mount_vnd.c
+++ b/sbin/mount_vnd/mount_vnd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: mount_vnd.c,v 1.6 2008/08/14 17:10:29 jsing Exp $ */
+/* $OpenBSD: mount_vnd.c,v 1.7 2008/08/15 14:41:21 jsing Exp $ */
/*
* Copyright (c) 1993 University of Utah.
* Copyright (c) 1990, 1993
@@ -338,12 +338,13 @@ usage(void)
if (run_mount_vnd)
(void)fprintf(stderr,
- "usage: %s [-k] [-K rounds] [-o options] "
- "[-S saltfile] image vnd_dev\n", __progname);
+ "usage: mount_vnd [-k] [-K rounds] [-o options] "
+ "[-S saltfile] [-s secsize]\n"
+ "\t\t image vnd_dev\n");
else
(void)fprintf(stderr,
- "usage: %s [-ckluv] [-K rounds] [-S saltfile] vnd_dev "
- "image\n", __progname);
+ "usage: %s [-ckluv] [-K rounds] [-S saltfile] "
+ "[-s secsize] vnd_dev image\n", __progname);
exit(1);
}