]> git.puffer.fish Git - mirror/frr.git/commitdiff
pimd: Fix show of 'ip pim rp keep-alive-timer
authorDonald Sharp <sharpd@cumulusnetworks.com>
Sun, 23 Oct 2016 00:23:08 +0000 (20:23 -0400)
committerDonald Sharp <sharpd@cumulusnetworks.com>
Thu, 22 Dec 2016 01:26:11 +0000 (20:26 -0500)
When displaying this changed value, we were
using an incorrect data value.

Signed-off-by: Donald Sharpd <sharpd@cumulusnetworks.com>
pimd/pim_vty.c

index f5cdc2bd2c340bd96f38b59b6c5d2c44817f4e8f..5e13b60873742ce599501034b64a9dc8663ea12c 100644 (file)
@@ -150,7 +150,7 @@ int pim_global_config_write(struct vty *vty)
   if (qpim_rp_keep_alive_time != PIM_RP_KEEPALIVE_PERIOD)
     {
       vty_out (vty, "ip pim rp keep-alive-timer %d%s",
-               qpim_keep_alive_time, VTY_NEWLINE);
+               qpim_rp_keep_alive_time, VTY_NEWLINE);
       ++writes;
     }