diff --git a/xCAT-server/lib/perl/xCAT/IPMI.pm b/xCAT-server/lib/perl/xCAT/IPMI.pm index cc066be1d..d19b47149 100644 --- a/xCAT-server/lib/perl/xCAT/IPMI.pm +++ b/xCAT-server/lib/perl/xCAT/IPMI.pm @@ -117,10 +117,9 @@ sub new { return $self; } - if ($ip =~ /::ffff:\d+\.\d+\.+\d+\.\d+/) { + if ($ip and $ip =~ /::ffff:\d+\.\d+\.+\d+\.\d+/) { $ip =~ s/::ffff://; - } - if (not $ip and $bmc_n) { + } elsif (not $ip and $bmc_n) { $ip = inet_ntoa($bmc_n); } $bmc_handlers{$ip}=$self;