Merge pull request #8738 from gromit1811/bugfix_ospf6_set_tag

ospf6d: Fix route map "set tag" command
This commit is contained in:
Igor Ryzhov 2021-05-27 10:07:13 +03:00 committed by GitHub
commit 6e33da3839
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2009,6 +2009,9 @@ static void ospf6_routemap_init(void)
route_map_set_metric_hook(generic_set_add);
route_map_no_set_metric_hook(generic_set_delete);
route_map_set_tag_hook(generic_set_add);
route_map_no_set_tag_hook(generic_set_delete);
route_map_match_tag_hook(generic_match_add);
route_map_no_match_tag_hook(generic_match_delete);