Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-09-05 22:21:53 +0400
committerEric Andersen <andersen@codepoet.org>2000-09-05 22:21:53 +0400
commit1eec89df4c85f6c6fbf8fea962cd5b1d8029492d (patch)
tree787a2748d5c811d559e767a0858319bf8069a70d /miscutils/mt.c
parent3639c5d9509ff2c91dee55bbce290d87a49970d5 (diff)
Apply segfault on no-args fix from robotti@metconnect.com
Diffstat (limited to 'miscutils/mt.c')
-rw-r--r--miscutils/mt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/mt.c b/miscutils/mt.c
index 087819e72..e77f58a6a 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);
}