From a02dafe8518d49e11cd93c0efb8a4cd9577459c2 Mon Sep 17 00:00:00 2001 From: jsing Date: Fri, 15 Aug 2008 14:41:21 +0000 Subject: [PATCH] Add -s option to usage(). Prompted by jmc@ ok jmc@ --- sbin/mount_vnd/mount_vnd.c | 11 ++++++----- 1 file 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); } -- 2.20.1