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:
authorDenis Vlasenko <vda.linux@googlemail.com>2009-01-25 00:23:41 +0300
committerDenis Vlasenko <vda.linux@googlemail.com>2009-01-25 00:23:41 +0300
commitbdea2c06dc7144de67fbadce9a7f8fc07cf57c34 (patch)
treefe55a1922dfd1341e099761a812a011a9f052564 /networking/traceroute.c
parent766c10c386f5f4c6e01fa2d2797f52809db25ef4 (diff)
traceroute: allow -w NUM as small as 1
Diffstat (limited to 'networking/traceroute.c')
-rw-r--r--networking/traceroute.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/traceroute.c b/networking/traceroute.c
index 244a74d6d..7284f0022 100644
--- a/networking/traceroute.c
+++ b/networking/traceroute.c
@@ -652,7 +652,7 @@ int traceroute_main(int argc, char **argv)
bb_error_msg_and_die("you must be root to use -s");
}
if (op & OPT_WAITTIME)
- waittime = xatou_range(waittime_str, 2, 24 * 60 * 60);
+ waittime = xatou_range(waittime_str, 1, 24 * 60 * 60);
if (op & OPT_PAUSE_MS)
pausemsecs = xatou_range(pausemsecs_str, 0, 60 * 60 * 1000);
if (op & OPT_FIRST_TTL)