From: hasso Date: Sun, 20 Jun 2004 09:30:57 +0000 (+0000) Subject: Zebra daemon has access lists. X-Git-Tag: frr-2.0-rc1~3686 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=6c0f9a782a7be49de53b5ae00980990d96edbf03;p=matthieu%2Ffrr.git Zebra daemon has access lists. --- diff --git a/vtysh/ChangeLog b/vtysh/ChangeLog index 8e55786f15..d439850cc9 100644 --- a/vtysh/ChangeLog +++ b/vtysh/ChangeLog @@ -1,3 +1,7 @@ +2004-06-20 Hasso Tepper + + * extract.pl: Zebra daemon has access lists as well. + 2004-05-10 Hasso Tepper * vtysh.c: Workaround for most hated vtysh bug - Bugzilla #58. diff --git a/vtysh/extract.pl b/vtysh/extract.pl index cb5ca36a34..8488e01964 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/) {