diff options
author | Donald Sharp <donaldsharp72@gmail.com> | 2023-12-10 20:30:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-10 20:30:27 +0100 |
commit | fff267e4eed05b43d9b2e62b442809cfe5d1af6d (patch) | |
tree | f09762be23ec707abef04b052aae784ea9d5ac02 /zebra | |
parent | Merge pull request #14971 from opensourcerouting/o6-hidden-area (diff) | |
parent | zebra: Add missing whitespace when printing route entry status (diff) | |
download | frr-fff267e4eed05b43d9b2e62b442809cfe5d1af6d.tar.xz frr-fff267e4eed05b43d9b2e62b442809cfe5d1af6d.zip |
Merge pull request #14968 from opensourcerouting/fix/missing_whitespace
zebra: Add missing whitespace when printing route entry status
Diffstat (limited to 'zebra')
-rw-r--r-- | zebra/zebra_rib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/zebra_rib.c b/zebra/zebra_rib.c index 54e0a3492..980fced8a 100644 --- a/zebra/zebra_rib.c +++ b/zebra/zebra_rib.c @@ -340,7 +340,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 " : "", |