Commit 00284f0e authored by Ondrej Zajicek (work)'s avatar Ondrej Zajicek (work)
Browse files

BFD: Fix formatting of 'show bfd sessions'

The formatting was broken due to longer date in 'since' column.
parent cec40a74
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1084,7 +1084,7 @@ bfd_show_sessions(struct proto *P)
  }

  cli_msg(-1020, "%s:", p->p.name);
  cli_msg(-1020, "%-25s %-10s %-10s %-10s  %8s %8s",
  cli_msg(-1020, "%-25s %-10s %-10s %-12s  %8s %8s",
	  "IP address", "Interface", "State", "Since", "Interval", "Timeout");


@@ -1100,7 +1100,7 @@ bfd_show_sessions(struct proto *P)
    state = (state < 4) ? state : 0;
    tm_format_time(tbuf, &config->tf_proto, s->last_state_change);

    cli_msg(-1020, "%-25I %-10s %-10s %-10s  %7t  %7t",
    cli_msg(-1020, "%-25I %-10s %-10s %-12s  %7t  %7t",
	    s->addr, ifname, bfd_state_names[state], tbuf, tx_int, timeout);
  }
  HASH_WALK_END;