aboutsummaryrefslogtreecommitdiff
path: root/networking/route.c
diff options
context:
space:
mode:
Diffstat (limited to 'networking/route.c')
-rw-r--r--networking/route.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/route.c b/networking/route.c
index 4235ea72c..24cc2eb5a 100644
--- a/networking/route.c
+++ b/networking/route.c
@@ -283,7 +283,7 @@ static NOINLINE void INET_setroute(int action, char **args)
283 if (k == KW_IPVx_IRTT) { 283 if (k == KW_IPVx_IRTT) {
284 rt->rt_flags |= RTF_IRTT; 284 rt->rt_flags |= RTF_IRTT;
285 rt->rt_irtt = xatoul(args_m1); 285 rt->rt_irtt = xatoul(args_m1);
286 rt->rt_irtt *= (sysconf(_SC_CLK_TCK) / 100); /* FIXME */ 286 rt->rt_irtt *= (bb_clk_tck() / 100); /* FIXME */
287#if 0 /* FIXME: do we need to check anything of this? */ 287#if 0 /* FIXME: do we need to check anything of this? */
288 if (rt->rt_irtt < 1 || rt->rt_irtt > (120 * HZ)) { 288 if (rt->rt_irtt < 1 || rt->rt_irtt > (120 * HZ)) {
289 bb_error_msg_and_die("bad irtt"); 289 bb_error_msg_and_die("bad irtt");