summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandre Ratchov <ratchov@cvs.openbsd.org>2015-11-23 12:33:21 +0000
committerAlexandre Ratchov <ratchov@cvs.openbsd.org>2015-11-23 12:33:21 +0000
commitb7e2822b36b7c706cb3979b6476b5784886462eb (patch)
treeedbc659f86d19472cf37d6410a82dab0f5990cac
parent92d1502548e369656899948e6d7a7bec211694c0 (diff)
Remove unused -M option (2+ years get used to it is enough)
-rw-r--r--usr.bin/sndiod/sndiod.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/usr.bin/sndiod/sndiod.c b/usr.bin/sndiod/sndiod.c
index 06f07f5b080..e37516e60cc 100644
--- a/usr.bin/sndiod/sndiod.c
+++ b/usr.bin/sndiod/sndiod.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sndiod.c,v 1.14 2015/11/23 12:01:04 ratchov Exp $ */
+/* $OpenBSD: sndiod.c,v 1.15 2015/11/23 12:33:20 ratchov Exp $ */
/*
* Copyright (c) 2008-2012 Alexandre Ratchov <alex@caoua.org>
*
@@ -370,7 +370,7 @@ main(int argc, char **argv)
setsig();
filelist_init();
- while ((c = getopt(argc, argv, "a:b:c:C:de:f:j:L:m:Mq:r:s:t:U:v:w:x:z:")) != -1) {
+ while ((c = getopt(argc, argv, "a:b:c:C:de:f:j:L:m:q:r:s:t:U:v:w:x:z:")) != -1) {
switch (c) {
case 'd':
log_level++;
@@ -446,9 +446,6 @@ main(int argc, char **argv)
case 'f':
mkdev(optarg, &par, 0, bufsz, round, rate, hold, autovol);
break;
- case 'M':
- /* XXX: for compatibility with aucat, remove this */
- break;
default:
fputs(usagestr, stderr);
return 1;