diff options
author | 2016-06-21 21:16:42 +0000 | |
---|---|---|
committer | 2016-06-21 21:16:42 +0000 | |
commit | 8dcc4a411c4c818a90804a6b9eb09a46ac25a0ef (patch) | |
tree | 7a4db7a5af76b3a77a461128be8d5bcfc13b6425 | |
parent | To assist debugging TCP connection reuse with NAT, expand the (diff) | |
download | wireguard-openbsd-8dcc4a411c4c818a90804a6b9eb09a46ac25a0ef.tar.xz wireguard-openbsd-8dcc4a411c4c818a90804a6b9eb09a46ac25a0ef.zip |
Make usage string match the man page.
suggested by jmc@
-rw-r--r-- | usr.bin/audioctl/audioctl.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/usr.bin/audioctl/audioctl.c b/usr.bin/audioctl/audioctl.c index 2511aec00c6..f67fe478e15 100644 --- a/usr.bin/audioctl/audioctl.c +++ b/usr.bin/audioctl/audioctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: audioctl.c,v 1.31 2016/06/21 06:26:50 ratchov Exp $ */ +/* $OpenBSD: audioctl.c,v 1.32 2016/06/21 21:16:42 ratchov Exp $ */ /* * Copyright (c) 2016 Alexandre Ratchov <alex@caoua.org> * @@ -62,7 +62,10 @@ struct field { {NULL, NULL, 0} }; -const char usagestr[] = "usage: audioctl [-nq] [-f path] [name=[value]] ...\n"; +const char usagestr[] = + "usage: audioctl [-f path]\n" + " audioctl [-n] [-f path] name ...\n" + " audioctl [-nq] [-f path] name=value ...\n"; /* * parse encoding string (examples: s8, u8, s16, s16le, s24be ...) |