summaryrefslogtreecommitdiffstats
path: root/eigrpd/eigrp_cli.c
diff options
context:
space:
mode:
authorIgor Ryzhov <iryzhov@nfware.com>2021-03-12 23:50:08 +0100
committerIgor Ryzhov <iryzhov@nfware.com>2021-03-16 15:44:25 +0100
commit77a42534c1829b0e7ad4993585c4be58f756df48 (patch)
tree6031ffa6e621e3a9457b5911bc0aeda0dd675337 /eigrpd/eigrp_cli.c
parentMerge pull request #8260 from volta-networks/fix_isis_snmp_test (diff)
downloadfrr-77a42534c1829b0e7ad4993585c4be58f756df48.tar.xz
frr-77a42534c1829b0e7ad4993585c4be58f756df48.zip
eigrpd: fix xpaths
Signed-off-by: Igor Ryzhov <iryzhov@nfware.com>
Diffstat (limited to '')
-rw-r--r--eigrpd/eigrp_cli.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/eigrpd/eigrp_cli.c b/eigrpd/eigrp_cli.c
index 00d8ea886..0de72d1ac 100644
--- a/eigrpd/eigrp_cli.c
+++ b/eigrpd/eigrp_cli.c
@@ -671,7 +671,7 @@ DEFPY_YANG(
as_str);
nb_cli_enqueue_change(vty, xpath, NB_OP_CREATE, NULL);
- snprintf(xpath_auth, sizeof(xpath_auth), "%s/summarize-address", xpath);
+ snprintf(xpath_auth, sizeof(xpath_auth), "%s/summarize-addresses", xpath);
nb_cli_enqueue_change(vty, xpath_auth, NB_OP_CREATE, prefix_str);
return nb_cli_apply_changes(vty, NULL);
@@ -694,7 +694,7 @@ DEFPY_YANG(
as_str);
nb_cli_enqueue_change(vty, xpath, NB_OP_CREATE, NULL);
- snprintf(xpath_auth, sizeof(xpath_auth), "%s/summarize-address", xpath);
+ snprintf(xpath_auth, sizeof(xpath_auth), "%s/summarize-addresses", xpath);
nb_cli_enqueue_change(vty, xpath_auth, NB_OP_DESTROY, prefix_str);
return nb_cli_apply_changes(vty, NULL);