diff options
author | Klemens Nanni <kn@cvs.openbsd.org> | 2022-10-21 12:04:52 +0000 |
---|---|---|
committer | Klemens Nanni <kn@cvs.openbsd.org> | 2022-10-21 12:04:52 +0000 |
commit | c87ab3acfcdb5990a40db202622fbf9638bbc449 (patch) | |
tree | 83ce578ab571aea6aef7807213f0d3a3950f9c76 /etc | |
parent | 5b73dc1f19db108a7580f0c4a1bea5cefd7b4893 (diff) |
Fix synopsis, -n does not require an interface; OK jmc
Diffstat (limited to 'etc')
-rw-r--r-- | etc/netstart | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/netstart b/etc/netstart index 6da1f4084a6..88856d5a3db 100644 --- a/etc/netstart +++ b/etc/netstart @@ -1,13 +1,13 @@ #!/bin/sh - # -# $OpenBSD: netstart,v 1.219 2022/07/03 12:14:36 kn Exp $ +# $OpenBSD: netstart,v 1.220 2022/10/21 12:04:51 kn Exp $ # Turn off Strict Bourne shell mode. set +o sh # Show usage of the netstart script and exit. usage() { - print -u2 "usage: ${0##*/} [[-n] interface ...]" + print -u2 "usage: ${0##*/} [-n] [interface ...]" exit 1 } |