diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2013-11-25 18:42:47 +0100 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2013-11-25 18:42:47 +0100 |
commit | 283c7dfada53a6dee6a8a17ecab492ffafd44b66 (patch) | |
tree | 5edfb9df61c3b625967f3c65317f27c5051a8a4d /proto/bfd/bfd.c | |
parent | 736e143fa50607fcd88132291e96089b899af979 (diff) | |
parent | 0bb4e37db317a1290bad24fe430cac6569a9bd8c (diff) |
Merge branch 'master' into add-path
Diffstat (limited to 'proto/bfd/bfd.c')
-rw-r--r-- | proto/bfd/bfd.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/proto/bfd/bfd.c b/proto/bfd/bfd.c index 5ebfadc1..89355483 100644 --- a/proto/bfd/bfd.c +++ b/proto/bfd/bfd.c @@ -1070,13 +1070,13 @@ bfd_show_sessions(struct proto *P) if (p->p.proto_state != PS_UP) { - cli_msg(-1013, "%s: is not up", p->p.name); + cli_msg(-1020, "%s: is not up", p->p.name); cli_msg(0, ""); return; } - cli_msg(-1013, "%s:", p->p.name); - cli_msg(-1013, "%-25s %-10s %-10s %-10s %8s %8s", + cli_msg(-1020, "%s:", p->p.name); + cli_msg(-1020, "%-25s %-10s %-10s %-10s %8s %8s", "IP address", "Interface", "State", "Since", "Interval", "Timeout"); @@ -1092,7 +1092,7 @@ bfd_show_sessions(struct proto *P) state = (state < 4) ? state : 0; tm_format_datetime(tbuf, &config->tf_proto, s->last_state_change); - cli_msg(-1013, "%-25I %-10s %-10s %-10s %3u.%03u %3u.%03u", + cli_msg(-1020, "%-25I %-10s %-10s %-10s %3u.%03u %3u.%03u", s->addr, ifname, bfd_state_names[state], tbuf, tx_int / 1000, tx_int % 1000, timeout / 1000, timeout % 1000); } |