diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2021-02-02 13:48:21 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2021-02-02 13:48:21 +0100 |
commit | f3a55b306ed3803133ab028b72b255c65d94197f (patch) | |
tree | 2c7570579c4b17220283af48f15afdbd53713222 | |
parent | 808d93c0eca49e0b22056e23d965f0d967433fbb (diff) | |
download | busybox-w32-f3a55b306ed3803133ab028b72b255c65d94197f.tar.gz busybox-w32-f3a55b306ed3803133ab028b72b255c65d94197f.tar.bz2 busybox-w32-f3a55b306ed3803133ab028b72b255c65d94197f.zip |
traceroute: fix option parsing
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | networking/traceroute.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/traceroute.c b/networking/traceroute.c index 8f5cd0bf2..057f8591a 100644 --- a/networking/traceroute.c +++ b/networking/traceroute.c | |||
@@ -896,7 +896,7 @@ traceroute_init(int op, char **argv) | |||
896 | 896 | ||
897 | op |= getopt32(argv, "^" | 897 | op |= getopt32(argv, "^" |
898 | OPT_STRING | 898 | OPT_STRING |
899 | "\0" "-1:x-x" /* minimum 1 arg */ | 899 | "\0" "-1" /* minimum 1 arg */ |
900 | , &tos_str, &device, &max_ttl_str, &port_str, &nprobes_str | 900 | , &tos_str, &device, &max_ttl_str, &port_str, &nprobes_str |
901 | , &source, &waittime_str, &pausemsecs_str, &first_ttl_str | 901 | , &source, &waittime_str, &pausemsecs_str, &first_ttl_str |
902 | ); | 902 | ); |