Correct regex mistake in previous checkin

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@9759 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
jbjohnso 2011-06-07 18:11:48 +00:00
parent 20d563cf8d
commit 709ec87249

View File

@ -113,7 +113,7 @@ sub dbc_submit {
$data .= $lastline;
}
close($clisock);
if ($lastline =~ m/*XCATBUGDETECTED*76e9b54341\n\z/) { #if it was an error
if ($lastline =~ m/\*XCATBUGDETECTED\*76e9b54341\n\z/) { #if it was an error
#in the midst of the operation, die like it used to die
my $err;
$data =~ /\*XCATBUGDETECTED\*:(.*):\*XCATBUGDETECTED\*/s;