diff options
author | 2011-12-09 22:56:35 +0000 | |
---|---|---|
committer | 2011-12-09 22:56:35 +0000 | |
commit | 8f64c7bd1f2436f7c76b0db081c947f8c5d24baf (patch) | |
tree | ea483bd385477e7c70c4e74b148ccd501c0624b1 | |
parent | Change the way the working directory for new processes is discovered. If (diff) | |
download | wireguard-openbsd-8f64c7bd1f2436f7c76b0db081c947f8c5d24baf.tar.xz wireguard-openbsd-8f64c7bd1f2436f7c76b0db081c947f8c5d24baf.zip |
fix usage string: remove -M from aucat and -l from aucat and sndiod
from jmc
-rw-r--r-- | usr.bin/aucat/aucat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/aucat/aucat.c b/usr.bin/aucat/aucat.c index 0ea1c170f46..137cd8c7ea2 100644 --- a/usr.bin/aucat/aucat.c +++ b/usr.bin/aucat/aucat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: aucat.c,v 1.129 2011/12/09 14:36:42 ratchov Exp $ */ +/* $OpenBSD: aucat.c,v 1.130 2011/12/09 22:56:35 ratchov Exp $ */ /* * Copyright (c) 2008 Alexandre Ratchov <alex@caoua.org> * @@ -84,13 +84,13 @@ volatile sig_atomic_t debug_level = 1; #endif volatile sig_atomic_t quit_flag = 0; -char aucat_usage[] = "usage: " PROG_AUCAT " [-dlMn] [-b nframes] " +char aucat_usage[] = "usage: " PROG_AUCAT " [-dn] [-b nframes] " "[-C min:max] [-c min:max] [-e enc]\n\t" "[-f device] [-h fmt] [-i file] [-j flag] [-m mode] [-o file]\n\t" "[-q port] [-r rate] [-t mode] [-v volume] [-w flag] [-x policy]\n\t" "[-z nframes]\n"; -char sndiod_usage[] = "usage: " PROG_SNDIOD " [-dlM] [-a flag] [-b nframes] " +char sndiod_usage[] = "usage: " PROG_SNDIOD " [-dM] [-a flag] [-b nframes] " "[-C min:max] [-c min:max] [-e enc]\n\t" "[-f device] [-j flag] [-L addr] [-m mode] [-q port] [-r rate]\n\t" "[-s name] [-t mode] [-U unit] [-v volume] [-w flag] [-x policy]\n\t" |