summaryrefslogtreecommitdiff
path: root/pimd
diff options
context:
space:
mode:
authorRuss White <russ@riw.us>2023-09-19 11:36:04 -0400
committerGitHub <noreply@github.com>2023-09-19 11:36:04 -0400
commite7f0bbb1980660bdcf4595e88b60eadd41a0a172 (patch)
treee73ce296780d78f942779869a0bd62715778013d /pimd
parent7e1eb2a1e02ac3191c87b71acb7d2346dca4a9ca (diff)
parentdd1e34eff498985d8af26cfc329e751a4b022a9b (diff)
Merge pull request #14299 from SaiGomathiN/14286
pimd,pim6d: Resolving the YANG datatype Inconsistency for PIM Hello Interval
Diffstat (limited to 'pimd')
-rw-r--r--pimd/pim_nb_config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pimd/pim_nb_config.c b/pimd/pim_nb_config.c
index 30d84710e6..be05b69401 100644
--- a/pimd/pim_nb_config.c
+++ b/pimd/pim_nb_config.c
@@ -1633,7 +1633,7 @@ int lib_interface_pim_address_family_hello_interval_modify(
ifp = nb_running_get_entry(args->dnode, NULL, true);
pim_ifp = ifp->info;
pim_ifp->pim_hello_period =
- yang_dnode_get_uint8(args->dnode, NULL);
+ yang_dnode_get_uint16(args->dnode, NULL);
pim_ifp->pim_default_holdtime = -1;
break;
}