From 12981249c83e79f6947bca6c3f90b415d828c602 Mon Sep 17 00:00:00 2001 From: Bruce Evans Date: Tue, 10 Jan 1995 01:42:24 +0000 Subject: Remove excessive argc checking. It was impossible to set `dtrwait' and and `drainwait' in a single command. --- sbin/comcontrol/comcontrol.c | 3 ++- sbin/i386/comcontrol/comcontrol.c | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/sbin/comcontrol/comcontrol.c b/sbin/comcontrol/comcontrol.c index cb65f18990a7..17c288274f13 100644 --- a/sbin/comcontrol/comcontrol.c +++ b/sbin/comcontrol/comcontrol.c @@ -48,7 +48,8 @@ int main(int argc, char *argv[]) int res = 0; int dtrwait = -1, drainwait = -1; - if ((argc < 2) || (argc > 5)) usage(argv[0]); + if (argc < 2) + usage(argv[0]); fd = open(argv[1], O_RDONLY|O_NONBLOCK, 0); if (fd < 0) { diff --git a/sbin/i386/comcontrol/comcontrol.c b/sbin/i386/comcontrol/comcontrol.c index cb65f18990a7..17c288274f13 100644 --- a/sbin/i386/comcontrol/comcontrol.c +++ b/sbin/i386/comcontrol/comcontrol.c @@ -48,7 +48,8 @@ int main(int argc, char *argv[]) int res = 0; int dtrwait = -1, drainwait = -1; - if ((argc < 2) || (argc > 5)) usage(argv[0]); + if (argc < 2) + usage(argv[0]); fd = open(argv[1], O_RDONLY|O_NONBLOCK, 0); if (fd < 0) { -- cgit v1.2.3