]> git.puffer.fish Git - mirror/frr.git/commitdiff
eigrpd: Correctly size the dump data
authorDonald Sharp <sharpd@cumulusnetworks.com>
Sat, 10 Jun 2017 20:31:49 +0000 (16:31 -0400)
committerDonald Sharp <sharpd@cumulusnetworks.com>
Sat, 10 Jun 2017 20:31:49 +0000 (16:31 -0400)
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
eigrpd/eigrp_dump.c

index c2fbe29cfcc3d6181f8c1466fcbd234fdf8fd628..4f0e3dd876a4c10d68464111ee29f2168271537d 100644 (file)
 /* Enable debug option variables -- valid only session. */
 unsigned long term_debug_eigrp = 0;
 unsigned long term_debug_eigrp_nei = 0;
-unsigned long term_debug_eigrp_packet[10] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
+unsigned long term_debug_eigrp_packet[11] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
 unsigned long term_debug_eigrp_zebra = 6;
 unsigned long term_debug_eigrp_transmit = 0;
 
 /* Configuration debug option variables. */
 unsigned long conf_debug_eigrp = 0;
 unsigned long conf_debug_eigrp_nei = 0;
-unsigned long conf_debug_eigrp_packet[10] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
+unsigned long conf_debug_eigrp_packet[11] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
 unsigned long conf_debug_eigrp_zebra = 0;
 unsigned long conf_debug_eigrp_transmit = 0;