From c88186c3b29c1a5b655c966a6e92f1b197d68dc4 Mon Sep 17 00:00:00 2001 From: ligc Date: Tue, 11 Dec 2012 02:40:31 +0000 Subject: [PATCH] fix a typo in my_nets, to not throw away all the remote networks git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/branches/2.7@14611 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- perl-xCAT/xCAT/Utils.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl-xCAT/xCAT/Utils.pm b/perl-xCAT/xCAT/Utils.pm index 960920fe6..8bbac3b35 100644 --- a/perl-xCAT/xCAT/Utils.pm +++ b/perl-xCAT/xCAT/Utils.pm @@ -2384,7 +2384,7 @@ sub my_nets my $n = $_->{net}; my $if = $_->{mgtifname}; my $nm = $_->{mask}; - if (!$n || !$if || $nm) + if (!$n || !$if || !$nm) { next; #incomplete network }