From: Donatas Abraitis Date: Fri, 8 Dec 2023 11:57:56 +0000 (+0200) Subject: zebra: Add missing whitespace when printing route entry status X-Git-Tag: docker/9.0.3~49^2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=refs%2Fpull%2F14978%2Fhead;p=mirror%2Ffrr.git zebra: Add missing whitespace when printing route entry status Before: ``` status: Removed ReplacingInstalled ``` Signed-off-by: Donatas Abraitis (cherry picked from commit 162433cb2af7170318ab117ff4ded51f7e020343) --- diff --git a/zebra/zebra_rib.c b/zebra/zebra_rib.c index 15eb68c896..37814994ab 100644 --- a/zebra/zebra_rib.c +++ b/zebra/zebra_rib.c @@ -330,7 +330,7 @@ static char *_dump_re_status(const struct route_entry *re, char *buf, : "", CHECK_FLAG(re->status, ROUTE_ENTRY_QUEUED) ? "Queued " : "", CHECK_FLAG(re->status, ROUTE_ENTRY_ROUTE_REPLACING) - ? "Replacing" + ? "Replacing " : "", CHECK_FLAG(re->status, ROUTE_ENTRY_INSTALLED) ? "Installed " : "",