From d3897c07b174c61f8a0a24591f3637a35419076c Mon Sep 17 00:00:00 2001 From: ligc Date: Thu, 19 Nov 2009 01:31:07 +0000 Subject: [PATCH] fix a perl syntax error in conserver.pm git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@4617 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server/lib/xcat/plugins/conserver.pm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/xCAT-server/lib/xcat/plugins/conserver.pm b/xCAT-server/lib/xcat/plugins/conserver.pm index 431405c51..04ba55175 100644 --- a/xCAT-server/lib/xcat/plugins/conserver.pm +++ b/xCAT-server/lib/xcat/plugins/conserver.pm @@ -160,13 +160,14 @@ sub preprocess_request { my $no=$reqcopy->{node}; #print "node=@$no\n"; push @requests, $reqcopy; - } + } #end if + } #end foreach + if ($::DEBUG) { my $rsp; $rsp->{data}->[0] = "In preprocess_request, request is " . Dumper(@requests); xCAT::MsgUtils->message("I", $rsp, $callback); } - } return \@requests; }