diff options
| author | Juliusz Chroboczek <jch@pps.jussieu.fr> | 2012-02-11 14:06:24 +0100 | 
|---|---|---|
| committer | Paul Jakma <paul@quagga.net> | 2012-03-25 17:06:54 +0100 | 
| commit | 9c298c7119c1dba6c589b8f4c358debd8e694b72 (patch) | |
| tree | d8ae18bd5aec994e02aabed536446a24051cefbc /babeld/babel_main.c | |
| parent | c428edba5fb151844d28fbb41fce1df466a74e42 (diff) | |
babeld: display update-interval and resend-delay in show commands"
Diffstat (limited to 'babeld/babel_main.c')
| -rw-r--r-- | babeld/babel_main.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/babeld/babel_main.c b/babeld/babel_main.c index f2db0b37..e5764942 100644 --- a/babeld/babel_main.c +++ b/babeld/babel_main.c @@ -563,7 +563,7 @@ show_babel_main_configuration (struct vty *vty)              "vty port                = %d%s"              "id                      = %s%s"              "parasitic               = %s%s" -            "split-horizon           = %s%s" +            "resend-delay            = %d%s"              "allow_duplicates        = %s%s"              "kernel_metric           = %d%s",              pidfile, VTY_NEWLINE, @@ -578,7 +578,7 @@ show_babel_main_configuration (struct vty *vty)              babel_vty_port, VTY_NEWLINE,              format_eui64(myid), VTY_NEWLINE,              format_bool(parasitic), VTY_NEWLINE, -            format_bool(split_horizon), VTY_NEWLINE, +            resend_delay, VTY_NEWLINE,              format_bool(allow_duplicates), VTY_NEWLINE,              kernel_metric, VTY_NEWLINE);  } | 
