diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-06-10 22:31:49 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-06-10 22:31:49 +0200 |
commit | 4dfa484627d28e435e4d162aba55b5ac201dd535 (patch) | |
tree | cbe6bdbf78b5c4b85e5b72996f69c70ec9847069 /eigrpd/eigrp_dump.c | |
parent | eigrpd: Use correct memory operation (diff) | |
download | frr-4dfa484627d28e435e4d162aba55b5ac201dd535.tar.xz frr-4dfa484627d28e435e4d162aba55b5ac201dd535.zip |
eigrpd: Correctly size the dump data
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'eigrpd/eigrp_dump.c')
-rw-r--r-- | eigrpd/eigrp_dump.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eigrpd/eigrp_dump.c b/eigrpd/eigrp_dump.c index c2fbe29cf..4f0e3dd87 100644 --- a/eigrpd/eigrp_dump.c +++ b/eigrpd/eigrp_dump.c @@ -51,14 +51,14 @@ /* 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; |