diff options
author | Robert Bays <rbays@moresby.(none)> | 2007-11-09 17:53:47 -0800 |
---|---|---|
committer | Robert Bays <rbays@moresby.(none)> | 2007-11-09 17:53:47 -0800 |
commit | 6c4f2ec235c8c6b4ad821cbf2878bf5f9d9586b5 (patch) | |
tree | c8485a508cbb2074611dcf6fbc60140b0813d9fe /scripts | |
parent | 937ce3b04b0b8295ab5b86f4349bdd7abdbdb1c3 (diff) | |
download | vyatta-cfg-quagga-6c4f2ec235c8c6b4ad821cbf2878bf5f9d9586b5.tar.gz vyatta-cfg-quagga-6c4f2ec235c8c6b4ad821cbf2878bf5f9d9586b5.zip |
template updates
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/policy/vyatta-policy.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/policy/vyatta-policy.pl b/scripts/policy/vyatta-policy.pl index 928c69f6..ae04470f 100755 --- a/scripts/policy/vyatta-policy.pl +++ b/scripts/policy/vyatta-policy.pl @@ -25,7 +25,7 @@ sub check_peer_syntax() { $_ = $peer; if (/^local$/) { exit 0; } - if (! isIpAddress("$peer")) { exit 0; } + if (isIpAddress("$peer")) { exit 0; } exit 1; } |