diff options
author | hasso <hasso> | 2004-06-20 11:30:57 +0200 |
---|---|---|
committer | hasso <hasso> | 2004-06-20 11:30:57 +0200 |
commit | 6c0f9a782a7be49de53b5ae00980990d96edbf03 (patch) | |
tree | 10ebaa062f04c94f7964d4b6c8df5c8b49fca507 /vtysh | |
parent | We are going to change some stuff in incompatible way, so it's good idea to (diff) | |
download | frr-6c0f9a782a7be49de53b5ae00980990d96edbf03.tar.xz frr-6c0f9a782a7be49de53b5ae00980990d96edbf03.zip |
Zebra daemon has access lists.
Diffstat (limited to 'vtysh')
-rw-r--r-- | vtysh/ChangeLog | 4 | ||||
-rwxr-xr-x | vtysh/extract.pl | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/vtysh/ChangeLog b/vtysh/ChangeLog index 8e55786f1..d439850cc 100644 --- a/vtysh/ChangeLog +++ b/vtysh/ChangeLog @@ -1,3 +1,7 @@ +2004-06-20 Hasso Tepper <hasso@estpak.ee> + + * extract.pl: Zebra daemon has access lists as well. + 2004-05-10 Hasso Tepper <hasso@estpak.ee> * vtysh.c: Workaround for most hated vtysh bug - Bugzilla #58. diff --git a/vtysh/extract.pl b/vtysh/extract.pl index cb5ca36a3..8488e0196 100755 --- a/vtysh/extract.pl +++ b/vtysh/extract.pl @@ -90,9 +90,9 @@ foreach (@ARGV) { } if ($file =~ /filter.c/) { if ($defun_array[1] =~ m/ipv6/) { - $protocol = "VTYSH_RIPNGD|VTYSH_OSPF6D|VTYSH_BGPD"; + $protocol = "VTYSH_ZEBRA|VTYSH_RIPNGD|VTYSH_OSPF6D|VTYSH_BGPD"; } else { - $protocol = "VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD"; + $protocol = "VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_OSPFD|VTYSH_BGPD"; } } if ($file =~ /plist.c/) { |