diff options
| author | ckishimo <carles.kishimoto@gmail.com> | 2022-01-25 18:47:47 +0100 |
|---|---|---|
| committer | ckishimo <carles.kishimoto@gmail.com> | 2022-01-25 18:47:47 +0100 |
| commit | fb5a450fe7ca484b548de65f61c0b539b902ec3f (patch) | |
| tree | 396ebfd4704fc4775c1cec4bc3bf8ebc886bada8 | |
| parent | e48b2fea638bacf4138392684b01d69e3327aa6d (diff) | |
ospf6d: fix indentation in show ipv6 ospf area
Signed-off-by: ckishimo <carles.kishimoto@gmail.com>
| -rw-r--r-- | ospf6d/ospf6_area.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ospf6d/ospf6_area.c b/ospf6d/ospf6_area.c index 417fc69694..75587b4d3a 100644 --- a/ospf6d/ospf6_area.c +++ b/ospf6d/ospf6_area.c @@ -511,11 +511,13 @@ void ospf6_area_show(struct vty *vty, struct ospf6_area *oa, if (oa->ts_spf.tv_sec || oa->ts_spf.tv_usec) { result = monotime_since(&oa->ts_spf, NULL); if (result / TIMER_SECOND_MICRO > 0) { - vty_out(vty, "SPF last executed %ld.%lds ago\n", + vty_out(vty, + " SPF last executed %ld.%lds ago\n", result / TIMER_SECOND_MICRO, result % TIMER_SECOND_MICRO); } else { - vty_out(vty, "SPF last executed %ldus ago\n", + vty_out(vty, + " SPF last executed %ldus ago\n", result); } } else |
