diff options
author | paul <paul> | 2003-05-21 17:18:09 +0000 |
---|---|---|
committer | paul <paul> | 2003-05-21 17:18:09 +0000 |
commit | d8affd795000b39a367ea27fe831eeec2f44a1ee (patch) | |
tree | d19f3a9e41d08d93a759571c53ac022c2eff6a14 | |
parent | a8b06ed8781b19df76d6c6ae37b919c88e0e60e0 (diff) | |
download | quagga-d8affd795000b39a367ea27fe831eeec2f44a1ee.tar.bz2 quagga-d8affd795000b39a367ea27fe831eeec2f44a1ee.tar.xz |
From: Hasso Tepper <hasso@estpak.ee>
Subject: [zebra 19120] [PATCH] Vtysh
I really don't know how I could miss that one. Opsf(6)d have
prefix-lists as well.
-rwxr-xr-x | vtysh/extract.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vtysh/extract.pl b/vtysh/extract.pl index 8f2dcb9d..4a49a621 100755 --- a/vtysh/extract.pl +++ b/vtysh/extract.pl @@ -96,9 +96,9 @@ foreach (@ARGV) { } if ($file =~ /plist.c/) { if ($defun_array[1] =~ m/ipv6/) { - $protocol = "VTYSH_RIPNGD|VTYSH_BGPD"; + $protocol = "VTYSH_RIPNGD|VTYSH_OSPF6D|VTYSH_BGPD"; } else { - $protocol = "VTYSH_RIPD|VTYSH_BGPD"; + $protocol = "VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD"; } } if ($file =~ /distribute.c/) { |