diff options
author | Mohit Mehta <mohit.mehta@vyatta.com> | 2010-02-01 18:09:25 -0800 |
---|---|---|
committer | Mohit Mehta <mohit.mehta@vyatta.com> | 2010-02-01 18:09:25 -0800 |
commit | e6956d0456dd50f513a101838a1b12c69be73745 (patch) | |
tree | 44e324f17d1fd583ca34cad52f820476f451eb2a | |
parent | 04fb66322346b77cb171d51fc2b3763e0845b6f4 (diff) | |
download | vyatta-op-firewall-e6956d0456dd50f513a101838a1b12c69be73745.tar.gz vyatta-op-firewall-e6956d0456dd50f513a101838a1b12c69be73745.zip |
use OrigValue so that this works when show command is run outside of config mode
-rwxr-xr-x | scripts/firewall/vyatta-show-firewall.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/firewall/vyatta-show-firewall.pl b/scripts/firewall/vyatta-show-firewall.pl index e939dcf..385e003 100755 --- a/scripts/firewall/vyatta-show-firewall.pl +++ b/scripts/firewall/vyatta-show-firewall.pl @@ -125,7 +125,7 @@ sub show_interfaces_zones { my $custom_filter = 0; my $config = new Vyatta::Config; $config->setLevel("content-inspection traffic-filter"); - my $custom_traffic_filter = $config->returnValue('custom'); + my $custom_traffic_filter = $config->returnOrigValue('custom'); if ((defined $custom_traffic_filter) && ($custom_traffic_filter eq $chain)) { $custom_filter = 1; print "\n Active on all incoming and forwarded traffic for content-inspection\n"; |