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 <sharpd@cumulusnetworks.com>
This commit is contained in:
Donald Sharp 2019-03-12 20:44:31 -04:00
parent 6e727402bd
commit 1af62044d9

View File

@ -3512,7 +3512,7 @@ static void show_ip_ospf_interface_sub(struct vty *vty, struct ospf *ospf,
oi->output_cost); oi->output_cost);
json_object_int_add( json_object_int_add(
json_interface_sub, "transmitDelayMsecs", 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", json_object_string_add(json_interface_sub, "state",
lookup_msg(ospf_ism_state_msg, lookup_msg(ospf_ism_state_msg,
oi->state, NULL)); oi->state, NULL));
@ -3616,20 +3616,20 @@ static void show_ip_ospf_interface_sub(struct vty *vty, struct ospf *ospf,
if (OSPF_IF_PARAM(oi, fast_hello) == 0) if (OSPF_IF_PARAM(oi, fast_hello) == 0)
json_object_int_add( json_object_int_add(
json_interface_sub, "timerMsecs", json_interface_sub, "timerMsecs",
1000 / OSPF_IF_PARAM(oi, v_hello)); OSPF_IF_PARAM(oi, v_hello) / 1000);
else else
json_object_int_add( json_object_int_add(
json_interface_sub, "timerMsecs", 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, json_object_int_add(json_interface_sub,
"timerDeadMsecs", "timerDeadMsecs",
1000 / OSPF_IF_PARAM(oi, v_wait)); OSPF_IF_PARAM(oi, v_wait) / 1000);
json_object_int_add(json_interface_sub, json_object_int_add(json_interface_sub,
"timerWaitMsecs", "timerWaitMsecs",
1000 / OSPF_IF_PARAM(oi, v_wait)); OSPF_IF_PARAM(oi, v_wait) / 1000);
json_object_int_add( json_object_int_add(
json_interface_sub, "timerRetransmit", json_interface_sub, "timerRetransmit",
1000 / OSPF_IF_PARAM(oi, retransmit_interval)); OSPF_IF_PARAM(oi, retransmit_interval) / 1000);
} else { } else {
vty_out(vty, " Timer intervals configured,"); vty_out(vty, " Timer intervals configured,");
vty_out(vty, " Hello "); vty_out(vty, " Hello ");