diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2020-02-05 17:54:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-05 17:54:21 +0100 |
commit | 792465c09ff7318741cd65a2e3c0aca825eededb (patch) | |
tree | 4b3a491d71dd4171ff1edf9d5c3a2173c80e43c6 /vtysh | |
parent | Merge pull request #5758 from sworleys/Doc-No-Pbr-Dyn-Rules (diff) | |
parent | lib: fix route-map YANG module on old gcc versions (diff) | |
download | frr-792465c09ff7318741cd65a2e3c0aca825eededb.tar.xz frr-792465c09ff7318741cd65a2e3c0aca825eededb.zip |
Merge pull request #5104 from opensourcerouting/route-map-nbv2
lib: migrate route map to use northbound
Diffstat (limited to 'vtysh')
-rwxr-xr-x | vtysh/extract.pl.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vtysh/extract.pl.in b/vtysh/extract.pl.in index 13413888b..b7ac0abe0 100755 --- a/vtysh/extract.pl.in +++ b/vtysh/extract.pl.in @@ -87,7 +87,7 @@ sub scan_file { if ($file =~ /lib\/keychain\.c$/) { $protocol = "VTYSH_RIPD|VTYSH_EIGRPD"; } - elsif ($file =~ /lib\/routemap\.c$/) { + elsif ($file =~ /lib\/routemap\.c$/ || $file =~ /lib\/routemap_cli\.c$/) { $protocol = "VTYSH_RMAP"; } elsif ($file =~ /lib\/vrf\.c$/) { |