From 9496d87cc132e00f49114de7f23536c742962018 Mon Sep 17 00:00:00 2001 From: lissav Date: Tue, 23 Jun 2009 15:16:31 +0000 Subject: [PATCH] fix syntax error line 93 used wrong pointer to open table git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@3624 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- perl-xCAT/xCAT/NodeRange.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/perl-xCAT/xCAT/NodeRange.pm b/perl-xCAT/xCAT/NodeRange.pm index 406158200..aa4273468 100644 --- a/perl-xCAT/xCAT/NodeRange.pm +++ b/perl-xCAT/xCAT/NodeRange.pm @@ -90,7 +90,8 @@ sub expandatom { # check to see if atom is a defined group name that didn't have any current members if ( scalar @nodes == 0 ) { - for my $row ( $nodegroup->getAllAttribs('groupname') ) { + #for my $row ( $nodegroup->getAllAttribs('groupname') ) { + for my $row ( $grptab->getAllAttribs('groupname') ) { if ( $row->{groupname} eq $atom ) { return (); }