diff options
| author | Donald Sharp <donaldsharp72@gmail.com> | 2023-12-10 14:30:27 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-10 14:30:27 -0500 |
| commit | fff267e4eed05b43d9b2e62b442809cfe5d1af6d (patch) | |
| tree | f09762be23ec707abef04b052aae784ea9d5ac02 /zebra/zebra_rib.c | |
| parent | dabef024f152fc8937667059872acda864b8b03c (diff) | |
| parent | 162433cb2af7170318ab117ff4ded51f7e020343 (diff) | |
Merge pull request #14968 from opensourcerouting/fix/missing_whitespace
zebra: Add missing whitespace when printing route entry status
Diffstat (limited to 'zebra/zebra_rib.c')
| -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 54e0a34922..980fced8a7 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 " : "", |
