diff options
author | Mohit Mehta <mohit.mehta@vyatta.com> | 2009-04-27 14:20:29 -0700 |
---|---|---|
committer | Mohit Mehta <mohit.mehta@vyatta.com> | 2009-04-27 14:20:29 -0700 |
commit | ff7b5d410aecbd6ce953cb028dc46d1ace4235de (patch) | |
tree | 4d0021319058e0fa0a9f990d2f0807b891b872a1 /scripts | |
parent | 72918cdd22abc1c24c48c59fa4ad62f53e3312be (diff) | |
download | vyatta-cfg-ff7b5d410aecbd6ce953cb028dc46d1ace4235de.tar.gz vyatta-cfg-ff7b5d410aecbd6ce953cb028dc46d1ace4235de.zip |
fix broken call to getIP
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/vyatta-interfaces.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/vyatta-interfaces.pl b/scripts/vyatta-interfaces.pl index 9edf8f2..acb7a67 100755 --- a/scripts/vyatta-interfaces.pl +++ b/scripts/vyatta-interfaces.pl @@ -88,7 +88,7 @@ exit 0; sub is_ip_configured { my ($intf, $ip) = @_; - my @found = grep $ip, getIP($intf); + my @found = grep $ip, Vyatta::Misc::getIP($intf); return ($#found > 0); } |