From c14f0d7dce6359ed1c0a15bf8182bdb38bef6c64 Mon Sep 17 00:00:00 2001 From: sakolish Date: Wed, 5 Mar 2008 20:52:31 +0000 Subject: [PATCH] Remove timeout from send_cmd() call - Line #385 git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@696 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- perl-xCAT-2.0/xCAT/PPCcli.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl-xCAT-2.0/xCAT/PPCcli.pm b/perl-xCAT-2.0/xCAT/PPCcli.pm index 95ad71efb..0d28d5497 100644 --- a/perl-xCAT-2.0/xCAT/PPCcli.pm +++ b/perl-xCAT-2.0/xCAT/PPCcli.pm @@ -382,7 +382,7 @@ sub chsysstate { ##################################### # Send command ##################################### - my $result = send_cmd( $exp, $cmd, $timeout ); + my $result = send_cmd( $exp, $cmd ); return( $result ); }