BUG#42485: Pushbuild2 and some build tools do not work together with MTR2

It seems that the length of the thick line printed by mtr when printing the 
suite name differs from mtr1 and mtr2, affecting the mtr filtering by PB2.
      
This patch addresses it by restoring the thick line length to 78 (original
length) instead of 60 (the one in mtr2).
This commit is contained in:
Luis Soares 2009-02-01 14:14:39 +01:00
parent 16a6158c47
commit bb61c498ba

View file

@ -354,7 +354,7 @@ sub mtr_print_line () {
sub mtr_print_thick_line {
my $char= shift || '=';
print $char x 60, "\n";
print $char x 78, "\n";
}