From 1eec89df4c85f6c6fbf8fea962cd5b1d8029492d Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Tue, 5 Sep 2000 18:21:53 +0000 Subject: [PATCH] Apply segfault on no-args fix from robotti@metconnect.com --- miscutils/mt.c | 2 +- mt.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/miscutils/mt.c b/miscutils/mt.c index 087819e..e77f58a 100644 --- a/miscutils/mt.c +++ b/miscutils/mt.c @@ -55,7 +55,7 @@ extern int mt_main(int argc, char **argv) struct mtop op; int fd; - if ((argc != 2 && argc != 3) && **(argv + 1) != '-') { + if (argc < 2) { usage(mt_usage); } diff --git a/mt.c b/mt.c index 087819e..e77f58a 100644 --- a/mt.c +++ b/mt.c @@ -55,7 +55,7 @@ extern int mt_main(int argc, char **argv) struct mtop op; int fd; - if ((argc != 2 && argc != 3) && **(argv + 1) != '-') { + if (argc < 2) { usage(mt_usage); } -- 2.7.4