summaryrefslogtreecommitdiff
path: root/pimd/pim6_cmd.c
diff options
context:
space:
mode:
authorAbhishek N R <abnr@vmware.com>2023-06-11 21:54:24 -0700
committerAbhishek N R <abnr@vmware.com>2023-06-11 21:54:24 -0700
commit0140d077395f5ec35919e7c7330c6d5fc4e6de26 (patch)
treeff22b8ea15c95bd228e20a084b2a3790ae905549 /pimd/pim6_cmd.c
parentb65f3326b3a34bb30690b8cb0a3c248b89d76f57 (diff)
pim6d: Correcting the help string
Max response time in the code is being used as decisecond but the user input is taken in millisecond. Also yang expects the field to be in decisecond. The below condition in yang is failing due to the mismatch in units. ``` units deciseconds; must ". <= ../query-interval * 10"; ``` Issue: #11892 Signed-off-by: Abhishek N R <abnr@vmware.com>
Diffstat (limited to 'pimd/pim6_cmd.c')
-rw-r--r--pimd/pim6_cmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pimd/pim6_cmd.c b/pimd/pim6_cmd.c
index 94e8b874f7..262ce86c29 100644
--- a/pimd/pim6_cmd.c
+++ b/pimd/pim6_cmd.c
@@ -743,7 +743,7 @@ DEFPY (interface_ipv6_mld_query_max_response_time,
IPV6_STR
IFACE_MLD_STR
IFACE_MLD_QUERY_MAX_RESPONSE_TIME_STR
- "Query response value in milliseconds\n")
+ "Query response value in deci-seconds\n")
{
return gm_process_query_max_response_time_cmd(vty, qmrt_str);
}