From aa6869b6401e5fd121daa8f2fe648060a73427c1 Mon Sep 17 00:00:00 2001 From: Kevin Duret Date: Mon, 9 Jun 2014 11:59:36 +0200 Subject: [PATCH] Fix regexp refs #5597 --- storage/emc/recoverypoint/ssh/mode/systemstatus.pm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/storage/emc/recoverypoint/ssh/mode/systemstatus.pm b/storage/emc/recoverypoint/ssh/mode/systemstatus.pm index bb97ed9f9..266f201e5 100644 --- a/storage/emc/recoverypoint/ssh/mode/systemstatus.pm +++ b/storage/emc/recoverypoint/ssh/mode/systemstatus.pm @@ -94,13 +94,13 @@ sub run { my ($system, $clusters, $wans, $groups); foreach (split(/\n/, $stdout)) { - if (/^System:\s+(.*)$/im) { + if (/^System:\s+(.*)$/i) { $system = $1; - } elsif (/^Clusters:\s+(.*)$/im) { + } elsif (/^Clusters:\s+(.*)$/i) { $clusters = $1; - } elsif (/^Wans:\s+(.*)$/im) { + } elsif (/^Wans:\s+(.*)$/i) { $wans = $1; - } elsif (/^Groups:\s+(.*)$/im) { + } elsif (/^Groups:\s+(.*)$/i) { $groups = $1; } }