From 29787899cf424215a78dea4f9e965ca4ca69fea0 Mon Sep 17 00:00:00 2001 From: zhaoertao Date: Tue, 19 Jul 2011 12:27:22 +0000 Subject: [PATCH] fix bug 3371258: regular express that to get account status has bugs git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@10119 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- perl-xCAT/xCAT/PPCfsp.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl-xCAT/xCAT/PPCfsp.pm b/perl-xCAT/xCAT/PPCfsp.pm index b54c1b3e6..d1cbbbc8d 100644 --- a/perl-xCAT/xCAT/PPCfsp.pm +++ b/perl-xCAT/xCAT/PPCfsp.pm @@ -261,7 +261,7 @@ sub loginstate { if (!$res->is_success()) { return ([RC_ERROR, $res->status_line]); } - if ($res->content =~ m#[\d\D]+Status[\d\D]+$log_name]?>(\w+)#) { + if ($res->content =~ m#[\d\D]+Status[\d\D]+$log_name]*>(\w+)#) { my $out = sprintf("%9s: %8s", $log_name, $1); return ( [SUCCESS, $out]); } else {