Skip to content

Commit

Permalink
ospfd, ospf6d: Fix spacing nit for show ... summary-address command
Browse files Browse the repository at this point in the history
```
r1# sh ipv6 ospf6 summary-address
VRF Name: default
aggregation delay interval :5(in seconds)
```

Just hit this random and looks ugly, let's fix it.

Signed-off-by: Donatas Abraitis <[email protected]>
(cherry picked from commit ed2b593)
  • Loading branch information
ton31337 authored and mergify[bot] committed Oct 30, 2023
1 parent 1c44c6b commit f20879e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ospf6d/ospf6_top.c
Original file line number Diff line number Diff line change
Expand Up @@ -2015,7 +2015,7 @@ ospf6_show_summary_address(struct vty *vty, struct ospf6 *ospf6,

if (!uj) {
ospf6_show_vrf_name(vty, ospf6, json_vrf);
vty_out(vty, "aggregation delay interval :%u(in seconds)\n\n",
vty_out(vty, "aggregation delay interval: %u(in seconds)\n\n",
ospf6->aggr_delay_interval);
vty_out(vty, "%s\n", header);
} else {
Expand Down
2 changes: 1 addition & 1 deletion ospfd/ospf_vty.c
Original file line number Diff line number Diff line change
Expand Up @@ -11994,7 +11994,7 @@ static int ospf_show_summary_address(struct vty *vty, struct ospf *ospf,
ospf_show_vrf_name(ospf, vty, json_vrf, use_vrf);

if (!uj) {
vty_out(vty, "aggregation delay interval :%u(in seconds)\n\n",
vty_out(vty, "aggregation delay interval: %u(in seconds)\n\n",
ospf->aggr_delay_interval);
} else {
json_object_int_add(json_vrf, "aggregationDelayInterval",
Expand Down

0 comments on commit f20879e

Please sign in to comment.