From: Duncan Eastoe Date: Tue, 26 Jan 2021 12:19:05 +0000 (+0000) Subject: lib: restore blank line after show route header X-Git-Tag: base_8.0~458^2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=e3490d1fa24fc2d2979d4799cfceb1585bfd801c;p=mirror%2Ffrr.git lib: restore blank line after show route header In 5a3cf85391b3665b5344d577e98aaa29a1927818 the trailing empty line following the "show ip(v6) route" header was removed. Restore it for consistency. Signed-off-by: Duncan Eastoe --- diff --git a/lib/route_types.pl b/lib/route_types.pl index 759e9b4729..8c216e13bd 100755 --- a/lib/route_types.pl +++ b/lib/route_types.pl @@ -130,7 +130,7 @@ sub codelist { $str =~ s/ $//; push @lines, $str . "\\n\" \\\n"; push @lines, " \" > - selected route, * - FIB route, q - queued, r - rejected, b - backup\\n\""; - push @lines, " \" t - trapped, o - offload failure\\n\""; + push @lines, " \" t - trapped, o - offload failure\\n\\n\""; return join("", @lines);