From c26c7ee2c32aa8f3e8abfe10d531e5eee2f9515a Mon Sep 17 00:00:00 2001 From: ligc Date: Thu, 21 Oct 2010 08:56:59 +0000 Subject: [PATCH] fix for bug 3091852: a typo in the code git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@7899 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server/lib/perl/xCAT/PPC.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xCAT-server/lib/perl/xCAT/PPC.pm b/xCAT-server/lib/perl/xCAT/PPC.pm index b926e011a..042362f0b 100644 --- a/xCAT-server/lib/perl/xCAT/PPC.pm +++ b/xCAT-server/lib/perl/xCAT/PPC.pm @@ -1558,7 +1558,7 @@ sub preprocess_request { } #convert from millisecond to second $delay /= 1000.0; - if ($delay & ($i < scalar(@{$nodeseq}))) { + if ($delay && ($i < scalar(@{$nodeseq}))) { my %output; $output{data} = ["Waiting $delay seconds for node dependencies\n"]; $callback->( \%output );