]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
Fixes a reply code.
authorOndrej Zajicek <santiago@crfreenet.org>
Mon, 25 Nov 2013 10:06:00 +0000 (11:06 +0100)
committerOndrej Zajicek <santiago@crfreenet.org>
Mon, 25 Nov 2013 10:06:00 +0000 (11:06 +0100)
doc/reply_codes
proto/bfd/bfd.c

index e9996eefc391f02fc5b695708194b6d82816e3da..45b42e00dcd9a89983095362f0016e6e232aea89 100644 (file)
@@ -53,6 +53,7 @@ Reply codes of BIRD command-line interface
 1017   Show ospf lsadb
 1018   Show memory
 1019   Show ROA list
+1020   Show BFD sessions
 
 8000   Reply too long
 8001   Route not found
index 5ebfadc129f6d24ac09b8ec746fec473f3ff228e..89355483134ab12e95cb1c252b919944f24a4319 100644 (file)
@@ -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);
   }