From 5f129d3107d351ff7bd5844ac4f3ca6d9735c651 Mon Sep 17 00:00:00 2001 From: sakolish Date: Fri, 18 Apr 2008 15:20:53 +0000 Subject: [PATCH] Changed toIP() -> xCAT::Utils::toIP() git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@1115 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- perl-xCAT-2.0/xCAT/PPC.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/perl-xCAT-2.0/xCAT/PPC.pm b/perl-xCAT-2.0/xCAT/PPC.pm index c92dc13a8..beef70be6 100644 --- a/perl-xCAT-2.0/xCAT/PPC.pm +++ b/perl-xCAT-2.0/xCAT/PPC.pm @@ -408,7 +408,7 @@ sub resolve_netwk { send_msg( $request, 1, "$_: Unable to identify master" ); next; } - $ip = toIP( $server ); + $ip = xCAT::Utils::toIP( $server ); if ( @$ip[0] != 0 ) { send_msg( $request, 1, "$_: Cannot resolve '$server'" ); next; @@ -418,7 +418,7 @@ sub resolve_netwk { ################################# # Get client (-C) ################################# - $ip = toIP( $_ ); + $ip = xCAT::Utils::toIP( $_ ); if ( @$ip[0] != 0 ) { send_msg( $request, 1, "$_: Cannot resolve '$_'" ); next;