summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorMohit Mehta <mohit.mehta@vyatta.com>2009-04-27 14:20:29 -0700
committerMohit Mehta <mohit.mehta@vyatta.com>2009-04-27 14:20:29 -0700
commitff7b5d410aecbd6ce953cb028dc46d1ace4235de (patch)
tree4d0021319058e0fa0a9f990d2f0807b891b872a1 /scripts
parent72918cdd22abc1c24c48c59fa4ad62f53e3312be (diff)
downloadvyatta-cfg-ff7b5d410aecbd6ce953cb028dc46d1ace4235de.tar.gz
vyatta-cfg-ff7b5d410aecbd6ce953cb028dc46d1ace4235de.zip
fix broken call to getIP
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/vyatta-interfaces.pl2
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);
}