From: Denis Vlasenko Date: Sat, 24 Jan 2009 21:23:41 +0000 (-0000) Subject: traceroute: allow -w NUM as small as 1 X-Git-Tag: 1_14_0~358 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=bdea2c06dc7144de67fbadce9a7f8fc07cf57c34;p=oweals%2Fbusybox.git traceroute: allow -w NUM as small as 1 --- 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)