summaryrefslogtreecommitdiffstats
path: root/lib/if_rmap.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/if_rmap.c')
-rw-r--r--lib/if_rmap.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/if_rmap.c b/lib/if_rmap.c
index 42e1620..5fe5061 100644
--- a/lib/if_rmap.c
+++ b/lib/if_rmap.c
@@ -243,14 +243,14 @@ DEFPY_YANG(no_if_ipv6_route_map, no_if_ipv6_route_map_cmd,
void cli_show_if_route_map(struct vty *vty, const struct lyd_node *dnode,
bool show_defaults)
{
- if (yang_dnode_exists(dnode, "./in-route-map"))
+ if (yang_dnode_exists(dnode, "in-route-map"))
vty_out(vty, " route-map %s in %s\n",
- yang_dnode_get_string(dnode, "./in-route-map"),
- yang_dnode_get_string(dnode, "./interface"));
- if (yang_dnode_exists(dnode, "./out-route-map"))
+ yang_dnode_get_string(dnode, "in-route-map"),
+ yang_dnode_get_string(dnode, "interface"));
+ if (yang_dnode_exists(dnode, "out-route-map"))
vty_out(vty, " route-map %s out %s\n",
- yang_dnode_get_string(dnode, "./out-route-map"),
- yang_dnode_get_string(dnode, "./interface"));
+ yang_dnode_get_string(dnode, "out-route-map"),
+ yang_dnode_get_string(dnode, "interface"));
}
void if_rmap_yang_modify_cb(struct if_rmap_ctx *ctx,