From 7685478591ebd9a966cec46027f96d3755dd45c8 Mon Sep 17 00:00:00 2001 From: Donatas Abraitis Date: Sat, 22 Jun 2019 09:30:44 +0300 Subject: [PATCH] rmap: Minor changes in comments regarding match ip[v6] next-hop type Signed-off-by: Donatas Abraitis --- lib/routemap.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/routemap.c b/lib/routemap.c index f548452b7..d905eb606 100644 --- a/lib/routemap.c +++ b/lib/routemap.c @@ -111,14 +111,14 @@ struct route_map_match_set_hooks { const char *arg, route_map_event_t type); - /* match ip next hop type */ + /* match ip next-hop type */ int (*match_ip_next_hop_type)(struct vty *vty, struct route_map_index *index, const char *command, const char *arg, route_map_event_t type); - /* no match ip next hop type */ + /* no match ip next-hop type */ int (*no_match_ip_next_hop_type)(struct vty *vty, struct route_map_index *index, const char *command, @@ -159,7 +159,7 @@ struct route_map_match_set_hooks { const char *arg, route_map_event_t type); - /* no match ipv6next-hop type */ + /* no match ipv6 next-hop type */ int (*no_match_ipv6_next_hop_type)(struct vty *vty, struct route_map_index *index, const char *command, const char *arg, @@ -302,7 +302,7 @@ void route_map_no_match_ip_next_hop_prefix_list_hook(int (*func)( rmap_match_set_hook.no_match_ip_next_hop_prefix_list = func; } -/* match ip next hop type */ +/* match ip next-hop type */ void route_map_match_ip_next_hop_type_hook(int (*func)( struct vty *vty, struct route_map_index *index, const char *command, const char *arg, route_map_event_t type)) @@ -310,7 +310,7 @@ void route_map_match_ip_next_hop_type_hook(int (*func)( rmap_match_set_hook.match_ip_next_hop_type = func; } -/* no match ip next hop type */ +/* no match ip next-hop type */ void route_map_no_match_ip_next_hop_type_hook(int (*func)( struct vty *vty, struct route_map_index *index, const char *command, const char *arg, route_map_event_t type)) -- 2.39.2