From: Donald Sharp Date: Wed, 13 Mar 2019 00:44:31 +0000 (-0400) Subject: ospfd: When converting to ms divide by 1000 X-Git-Tag: frr-7.0.1~24^2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=791e89b8f8388ffdf38f9203aa7c642b0a97cc36;p=mirror%2Ffrr.git ospfd: When converting to ms divide by 1000 When converting to miliseconds divide by 1000 not the other way around. Signed-off-by: Donald Sharp --- diff --git a/ospfd/ospf_vty.c b/ospfd/ospf_vty.c index c1dc1f0d6f..73d90a270c 100644 --- a/ospfd/ospf_vty.c +++ b/ospfd/ospf_vty.c @@ -3513,7 +3513,7 @@ static void show_ip_ospf_interface_sub(struct vty *vty, struct ospf *ospf, oi->output_cost); json_object_int_add( json_interface_sub, "transmitDelayMsecs", - 1000 / OSPF_IF_PARAM(oi, transmit_delay)); + OSPF_IF_PARAM(oi, transmit_delay) / 1000); json_object_string_add(json_interface_sub, "state", lookup_msg(ospf_ism_state_msg, oi->state, NULL)); @@ -3617,20 +3617,20 @@ static void show_ip_ospf_interface_sub(struct vty *vty, struct ospf *ospf, if (OSPF_IF_PARAM(oi, fast_hello) == 0) json_object_int_add( json_interface_sub, "timerMsecs", - 1000 / OSPF_IF_PARAM(oi, v_hello)); + OSPF_IF_PARAM(oi, v_hello) / 1000); else json_object_int_add( json_interface_sub, "timerMsecs", - 1000 / OSPF_IF_PARAM(oi, fast_hello)); + OSPF_IF_PARAM(oi, fast_hello) / 1000); json_object_int_add(json_interface_sub, "timerDeadMsecs", - 1000 / OSPF_IF_PARAM(oi, v_wait)); + OSPF_IF_PARAM(oi, v_wait) / 1000); json_object_int_add(json_interface_sub, "timerWaitMsecs", - 1000 / OSPF_IF_PARAM(oi, v_wait)); + OSPF_IF_PARAM(oi, v_wait) / 1000); json_object_int_add( json_interface_sub, "timerRetransmit", - 1000 / OSPF_IF_PARAM(oi, retransmit_interval)); + OSPF_IF_PARAM(oi, retransmit_interval) / 1000); } else { vty_out(vty, " Timer intervals configured,"); vty_out(vty, " Hello ");