From 8c08670f8a293e022fab07d34a8a3531e61aa8a5 Mon Sep 17 00:00:00 2001 From: PhiBo Date: Thu, 23 Jan 2020 20:58:56 +0100 Subject: [PATCH] src - Remove illegal chars from long output --- check_mtr.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/check_mtr.pl b/check_mtr.pl index 87b8b19..37c3340 100755 --- a/check_mtr.pl +++ b/check_mtr.pl @@ -229,6 +229,7 @@ sub check $status_msg = ' <- !!! Unknown !!!'; } chomp($line); + $line = $line =~ s/\|--//r; push(@g_long_message, $line.$status_msg); } } -- GitLab