From: Juliusz Chroboczek Date: Tue, 7 Feb 2012 04:36:06 +0000 (+0100) Subject: babeld: Fix typo in hello interval command. X-Git-Tag: frr-2.0-rc1~1871^2~32 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=e19ed8c4516621be74b9a28c887185fc66b67430;p=mirror%2Ffrr.git babeld: Fix typo in hello interval command. --- diff --git a/babeld/babel_interface.c b/babeld/babel_interface.c index fafe009f87..a874289cc9 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);