eigrpd: Flags is now 32 bit as opposed to 8 bit.

This missalignment caused zebra to go 'Ruh-Roh' Shaggy.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
This commit is contained in:
Donald Sharp 2017-04-02 20:50:08 -04:00
parent 4325044689
commit 50ca9e8e53

View File

@ -484,7 +484,7 @@ eigrp_zebra_route_delete (struct prefix_ipv4 *p, struct eigrp_neighbor_entry *te
zclient_create_header (s, ZEBRA_IPV4_ROUTE_DELETE, VRF_DEFAULT);
stream_putc (s, ZEBRA_ROUTE_EIGRP);
stream_putw (s, 0); // Instance
stream_putc (s, flags);
stream_putl (s, flags);
stream_putc (s, message);
stream_putw (s, SAFI_UNICAST);