From 341bd36536a5c17d044095a54a49ee32abd986aa Mon Sep 17 00:00:00 2001 From: andersen Date: Fri, 22 Sep 2000 00:40:39 +0000 Subject: Apply a bandaid suggested by Jon McClintock , since deallocvt has code for handling no arguments, but the usage checking code aborted if there are any other than two arguments. -Erik git-svn-id: svn://busybox.net/trunk/busybox@1091 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- console-tools/deallocvt.c | 2 +- deallocvt.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/console-tools/deallocvt.c b/console-tools/deallocvt.c index 9c477d238..a5b5a03f0 100644 --- a/console-tools/deallocvt.c +++ b/console-tools/deallocvt.c @@ -17,7 +17,7 @@ int deallocvt_main(int argc, char *argv[]) { int fd, num, i; - if ((argc != 2) || (**(argv + 1) == '-')) + if ((argc > 2) || ((argv == 2) && (**(argv + 1) == '-'))) usage(deallocvt_usage); fd = get_console_fd("/dev/console"); diff --git a/deallocvt.c b/deallocvt.c index 9c477d238..a5b5a03f0 100644 --- a/deallocvt.c +++ b/deallocvt.c @@ -17,7 +17,7 @@ int deallocvt_main(int argc, char *argv[]) { int fd, num, i; - if ((argc != 2) || (**(argv + 1) == '-')) + if ((argc > 2) || ((argv == 2) && (**(argv + 1) == '-'))) usage(deallocvt_usage); fd = get_console_fd("/dev/console"); -- cgit v1.2.3-55-g6feb