From 709ec87249b74f26cb48929bd8b8df1d7ac7deb8 Mon Sep 17 00:00:00 2001 From: jbjohnso Date: Tue, 7 Jun 2011 18:11:48 +0000 Subject: [PATCH] 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 --- perl-xCAT/xCAT/Table.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl-xCAT/xCAT/Table.pm b/perl-xCAT/xCAT/Table.pm index a24bfa867..336fe4681 100644 --- a/perl-xCAT/xCAT/Table.pm +++ b/perl-xCAT/xCAT/Table.pm @@ -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;