diff options
author | 2008-06-15 18:52:58 +0000 | |
---|---|---|
committer | 2008-06-15 18:52:58 +0000 | |
commit | 8eead3dea3f427132aadfcfd5ee2bd635fa61591 (patch) | |
tree | a2892136c8d247486b1d181e38b3ca1707e0ac7a | |
parent | typo (diff) | |
download | wireguard-openbsd-8eead3dea3f427132aadfcfd5ee2bd635fa61591.tar.xz wireguard-openbsd-8eead3dea3f427132aadfcfd5ee2bd635fa61591.zip |
fix usage();
-rw-r--r-- | sbin/bioctl/bioctl.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sbin/bioctl/bioctl.c b/sbin/bioctl/bioctl.c index 246aededed7..105bc10052e 100644 --- a/sbin/bioctl/bioctl.c +++ b/sbin/bioctl/bioctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bioctl.c,v 1.70 2008/06/15 00:43:23 hshoexer Exp $ */ +/* $OpenBSD: bioctl.c,v 1.71 2008/06/15 18:52:58 jmc Exp $ */ /* * Copyright (c) 2004, 2005 Marco Peereboom @@ -232,8 +232,9 @@ usage(void) "[-b channel:target[.lun]]\n" "\t[-C flag[,flag,...]] [-c raidlevel] " "[-H channel:target[.lun]]\n" - "\t[-l special[,special,...]] " - "[-u channel:target[.lun]] [-d] device\n", __progname); + "\t[-l special[,special,...]] [-r rounds] " + "[-u channel:target[.lun]]\n" + "\tdevice\n", __progname); exit(1); } |