summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrohee <rohee@openbsd.org>1999-01-24 10:26:54 +0000
committerrohee <rohee@openbsd.org>1999-01-24 10:26:54 +0000
commita031f29066c82b78cbf7c4b60d59e530fa2a76cf (patch)
treed87227c44ab1991f8c95405581a9959b274c9992
parentWhomever thinks that a 'make clean' should do a 'make all' first shall be (diff)
downloadwireguard-openbsd-a031f29066c82b78cbf7c4b60d59e530fa2a76cf.tar.xz
wireguard-openbsd-a031f29066c82b78cbf7c4b60d59e530fa2a76cf.zip
-q was not in usage()
-rw-r--r--usr.sbin/mtree/mtree.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/mtree/mtree.c b/usr.sbin/mtree/mtree.c
index 7c2df88329c..3c08f7f8681 100644
--- a/usr.sbin/mtree/mtree.c
+++ b/usr.sbin/mtree/mtree.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: mtree.c,v 1.9 1998/12/28 21:22:46 deraadt Exp $ */
+/* $OpenBSD: mtree.c,v 1.10 1999/01/24 10:26:54 rohee Exp $ */
/* $NetBSD: mtree.c,v 1.7 1996/09/05 23:29:22 thorpej Exp $ */
/*-
@@ -44,7 +44,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)mtree.c 8.1 (Berkeley) 6/6/93";
#else
-static char rcsid[] = "$OpenBSD: mtree.c,v 1.9 1998/12/28 21:22:46 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: mtree.c,v 1.10 1999/01/24 10:26:54 rohee Exp $";
#endif
#endif /* not lint */
@@ -168,6 +168,6 @@ static void
usage()
{
(void)fprintf(stderr,
-"usage: mtree [-cdeinrtUux] [-f spec] [-K key] [-k key] [-p path] [-s seed]\n");
+"usage: mtree [-cdeinqrtUux] [-f spec] [-K key] [-k key] [-p path] [-s seed]\n");
exit(1);
}