diff options
author | 2012-06-19 20:03:29 +0000 | |
---|---|---|
committer | 2012-06-19 20:03:29 +0000 | |
commit | 255d1bb9564c34949c0f7bd09c5f0cf6a55d4deb (patch) | |
tree | 3e0be2319e67c245afec54ea3a5bfe5dbd010ed0 | |
parent | avoid shell code errors (diff) | |
download | wireguard-openbsd-255d1bb9564c34949c0f7bd09c5f0cf6a55d4deb.tar.xz wireguard-openbsd-255d1bb9564c34949c0f7bd09c5f0cf6a55d4deb.zip |
Remove hidden options that are not needed any more,
from Remco <remco at d-compu.dyndns.org>. Thanks
-rw-r--r-- | usr.bin/aucat/aucat.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/usr.bin/aucat/aucat.c b/usr.bin/aucat/aucat.c index 82fff7b408b..7cf29b7cd9f 100644 --- a/usr.bin/aucat/aucat.c +++ b/usr.bin/aucat/aucat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: aucat.c,v 1.135 2012/05/23 19:25:11 ratchov Exp $ */ +/* $OpenBSD: aucat.c,v 1.136 2012/06/19 20:03:29 ratchov Exp $ */ /* * Copyright (c) 2008 Alexandre Ratchov <alex@caoua.org> * @@ -428,7 +428,7 @@ main(int argc, char **argv) else prog++; if (strcmp(prog, PROG_AUCAT) == 0) { - optstr = "a:b:c:C:de:f:h:i:j:lL:m:Mno:q:r:s:t:U:v:w:x:z:"; + optstr = "b:c:C:de:f:h:i:j:m:no:q:r:t:v:w:x:z:"; usagestr = aucat_usage; } else if (strcmp(prog, PROG_SNDIOD) == 0) { optstr = "a:b:c:C:de:f:j:L:m:Mq:r:s:t:U:v:w:x:z:"; @@ -552,9 +552,6 @@ main(int argc, char **argv) case 'M': mkdev("midithru", MODE_THRU, 0, 0, hold, 0); break; - case 'l': - background = 1; - break; default: fputs(usagestr, stderr); exit(1); |