diff options
author | 2020-10-30 13:55:48 +0000 | |
---|---|---|
committer | 2020-10-30 13:55:48 +0000 | |
commit | 1e4c8201d8fe8ed00d4c58d24b40af99a72aa6ce (patch) | |
tree | bcb11715b8bf14167afc7974cc2736bc0b1c3e6c /sbin/bioctl/bioctl.c | |
parent | No need to print that we're the console device; wsdisplay(4) will do that (diff) | |
download | wireguard-openbsd-1e4c8201d8fe8ed00d4c58d24b40af99a72aa6ce.tar.xz wireguard-openbsd-1e4c8201d8fe8ed00d4c58d24b40af99a72aa6ce.zip |
Do not use ".Ar device" for both an option argument and for the operand.
Instead, use ".Ar chunk" for the -R option argument just like it is
already done for -l and -O.
While here, polish a few minor details in the vicinity of the word "device".
OK kn@
Diffstat (limited to 'sbin/bioctl/bioctl.c')
-rw-r--r-- | sbin/bioctl/bioctl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/bioctl/bioctl.c b/sbin/bioctl/bioctl.c index 0bbfa24f1ba..4cfc7698392 100644 --- a/sbin/bioctl/bioctl.c +++ b/sbin/bioctl/bioctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bioctl.c,v 1.144 2020/04/25 14:37:43 krw Exp $ */ +/* $OpenBSD: bioctl.c,v 1.145 2020/10/30 13:55:48 schwarze Exp $ */ /* * Copyright (c) 2004, 2005 Marco Peereboom @@ -280,7 +280,7 @@ usage(void) "usage: %s [-hiqv] [-a alarm-function] " "[-b channel:target[.lun]]\n" "\t[-H channel:target[.lun]] " - "[-R device | channel:target[.lun]]\n" + "[-R chunk | channel:target[.lun]]\n" "\t[-t patrol-function] " "[-u channel:target[.lun]] " "device\n" @@ -288,7 +288,7 @@ usage(void) "[-C flag[,flag,...]] [-c raidlevel] [-k keydisk]\n" "\t[-l special[,special,...]] " "[-O device | channel:target[.lun]]\n" - "\t[-p passfile] [-R device | channel:target[.lun]]\n" + "\t[-p passfile] [-R chunk | channel:target[.lun]]\n" "\t[-r rounds] " "device\n", __progname, __progname); |