Skip to content

Commit

Permalink
Merge pull request FRRouting#14688 from opensourcerouting/fix/ospf_sp…
Browse files Browse the repository at this point in the history
…acing_nit

ospfd, ospf6d: Fix spacing nit for `show ... summary-address` command
  • Loading branch information
mjstapp authored Oct 30, 2023
2 parents 73914a3 + ed2b593 commit b6b16d9
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 b6b16d9

Please sign in to comment.