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/trunk@14610 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
ligc 2012-12-11 02:08:09 +00:00
parent bba164615f
commit 4b32bc602e

View File

@ -1023,7 +1023,7 @@ sub my_nets
my $n = $_->{net};
my $if = $_->{mgtifname};
my $nm = $_->{mask};
if (!$n || !$if || $nm)
if (!$n || !$if || !$nm)
{
next; #incomplete network
}