From 1eec89df4c85f6c6fbf8fea962cd5b1d8029492d Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Tue, 5 Sep 2000 18:21:53 +0000 Subject: Apply segfault on no-args fix from robotti@metconnect.com --- mt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mt.c') diff --git a/mt.c b/mt.c index 087819e72..e77f58a6a 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); } -- cgit v1.2.3