diff options
| author | Donatas Abraitis <donatas@opensourcerouting.org> | 2023-12-08 13:57:56 +0200 | 
|---|---|---|
| committer | Donatas Abraitis <donatas@opensourcerouting.org> | 2023-12-08 13:57:56 +0200 | 
| commit | 162433cb2af7170318ab117ff4ded51f7e020343 (patch) | |
| tree | 15888699a59ca51fc2a98116505f47134dd6b491 /zebra/zebra_rib.c | |
| parent | c659e1c349dd3679014330174464d3d84f65d23f (diff) | |
zebra: Add missing whitespace when printing route entry status
Before:
```
status: Removed ReplacingInstalled
```
Signed-off-by: Donatas Abraitis <donatas@opensourcerouting.org>
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 0bcb21fd74..478c02b824 100644 --- a/zebra/zebra_rib.c +++ b/zebra/zebra_rib.c @@ -339,7 +339,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 "  							      : "",  | 
