diff options
author | Alexandre Ratchov <ratchov@cvs.openbsd.org> | 2012-06-19 20:03:30 +0000 |
---|---|---|
committer | Alexandre Ratchov <ratchov@cvs.openbsd.org> | 2012-06-19 20:03:30 +0000 |
commit | 6b87dd0fa5c8e9b4b13e108925f31404a8d86937 (patch) | |
tree | f5a01dcdddea47aafacf710620b9b580378f050d /usr.bin/aucat | |
parent | d36e5b4141b98f99787db4e76b04ecf579bb9e3d (diff) |
Remove hidden options that are not needed any more,
from Remco <remco at d-compu.dyndns.org>. Thanks
Diffstat (limited to 'usr.bin/aucat')
-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); |