diff options
| author | Donatas Abraitis <donatas.abraitis@gmail.com> | 2019-06-22 09:30:44 +0300 |
|---|---|---|
| committer | Donatas Abraitis <donatas.abraitis@gmail.com> | 2019-06-22 09:49:33 +0300 |
| commit | f554fda700dec18cb9765dd002ecef92477d8b8f (patch) | |
| tree | 71e83496741acb4b8074e812dcef5ed43ce7586b | |
| parent | d8524fbef4a97a76bac9ff58c660af6fa17ebcff (diff) | |
rmap: Minor changes in comments regarding match ip[v6] next-hop type
Signed-off-by: Donatas Abraitis <donatas.abraitis@gmail.com>
| -rw-r--r-- | lib/routemap.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/routemap.c b/lib/routemap.c index 5405f6bcc7..6e6a1d99e0 100644 --- a/lib/routemap.c +++ b/lib/routemap.c @@ -112,14 +112,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, @@ -160,7 +160,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, @@ -303,7 +303,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)) @@ -311,7 +311,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)) |
