diff options
author | Juliusz Chroboczek <jch@pps.jussieu.fr> | 2012-02-07 05:36:06 +0100 |
---|---|---|
committer | Paul Jakma <paul@quagga.net> | 2012-03-25 18:06:53 +0200 |
commit | e19ed8c4516621be74b9a28c887185fc66b67430 (patch) | |
tree | 2af3257496f6dc568649ee1596d3a265cc8cfd26 /babeld/babel_interface.c | |
parent | vtysh: Vtysh support for babeld. (diff) | |
download | frr-e19ed8c4516621be74b9a28c887185fc66b67430.tar.xz frr-e19ed8c4516621be74b9a28c887185fc66b67430.zip |
babeld: Fix typo in hello interval command.
Diffstat (limited to 'babeld/babel_interface.c')
-rw-r--r-- | babeld/babel_interface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/babeld/babel_interface.c b/babeld/babel_interface.c index fafe009f8..a874289cc 100644 --- a/babeld/babel_interface.c +++ b/babeld/babel_interface.c @@ -430,7 +430,7 @@ DEFUN (babel_set_hello_interval, struct interface *ifp; babel_interface_nfo *babel_ifp; - int interval = atoi(argv[1]); + int interval = atoi(argv[0]); ifp = vty->index; babel_ifp = babel_get_if_nfo(ifp); |