From 2c47443a176a38442049382ba412c17087c38782 Mon Sep 17 00:00:00 2001 From: yinle Date: Sun, 7 Nov 2010 06:33:53 +0000 Subject: [PATCH] Fix bug 3090341: rvitals -v prints help information git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@8084 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server/lib/xcat/plugins/AAAusage.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xCAT-server/lib/xcat/plugins/AAAusage.pm b/xCAT-server/lib/xcat/plugins/AAAusage.pm index 0c6d876b9..f09afce69 100644 --- a/xCAT-server/lib/xcat/plugins/AAAusage.pm +++ b/xCAT-server/lib/xcat/plugins/AAAusage.pm @@ -56,7 +56,7 @@ sub preprocess_request { if (ref($extrargs)) { @exargs=@$extrargs; } - if (($#exargs==-1) or (($#exargs==0) and ($exargs[0] =~ /^\s*$/)) or (!$noderange and $command ne "lsslp")) { + if (($#exargs==-1) or (($#exargs==0) and ($exargs[0] =~ /^\s*$/)) and (!$noderange and $command ne "lsslp")) { $exargs[0] = "--help"; # force help if no args }