diff options
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 d1a0e55..757e29f 100755 --- a/scripts/vyatta-interfaces.pl +++ b/scripts/vyatta-interfaces.pl @@ -90,7 +90,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); } |