summaryrefslogtreecommitdiffstats
path: root/vtysh
diff options
context:
space:
mode:
authorMobashshera Rasool <mrasool@vmware.com>2022-03-28 08:58:48 +0200
committerMobashshera Rasool <mrasool@vmware.com>2022-03-28 12:23:48 +0200
commitec6ac9b1972bd2f6b6df54a675a2dae64cd7132d (patch)
tree8e0f9719a316ba23985cf327e5025258b28f2561 /vtysh
parentMerge pull request #10905 from opensourcerouting/fix/BGP_PREFIX_SID_SRV6_L3_S... (diff)
downloadfrr-ec6ac9b1972bd2f6b6df54a675a2dae64cd7132d.tar.xz
frr-ec6ac9b1972bd2f6b6df54a675a2dae64cd7132d.zip
pim6d: Correct the show ip prefix-list display for pim6d
Currently the PIM6d component is getting displayed under "show ip prefix-list" instead of "show ipv6 prefix-list". Fixed it. Signed-off-by: Mobashshera Rasool <mrasool@vmware.com>
Diffstat (limited to 'vtysh')
-rwxr-xr-xvtysh/extract.pl.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/vtysh/extract.pl.in b/vtysh/extract.pl.in
index 07819ea76..228a136b7 100755
--- a/vtysh/extract.pl.in
+++ b/vtysh/extract.pl.in
@@ -116,9 +116,9 @@ sub scan_file {
}
elsif ($file =~ /lib\/plist\.c$/) {
if ($defun_array[1] =~ m/ipv6/) {
- $protocol = "VTYSH_RIPNGD|VTYSH_OSPF6D|VTYSH_BGPD|VTYSH_ZEBRA|VTYSH_BABELD|VTYSH_ISISD|VTYSH_FABRICD";
+ $protocol = "VTYSH_RIPNGD|VTYSH_OSPF6D|VTYSH_BGPD|VTYSH_ZEBRA|VTYSH_PIM6D|VTYSH_BABELD|VTYSH_ISISD|VTYSH_FABRICD";
} else {
- $protocol = "VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD|VTYSH_ZEBRA|VTYSH_PIMD|VTYSH_PIM6D|VTYSH_EIGRPD|VTYSH_BABELD|VTYSH_ISISD|VTYSH_FABRICD";
+ $protocol = "VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD|VTYSH_ZEBRA|VTYSH_PIMD|VTYSH_EIGRPD|VTYSH_BABELD|VTYSH_ISISD|VTYSH_FABRICD";
}
}
elsif ($file =~ /lib\/if_rmap\.c$/) {