]> git.puffer.fish Git - mirror/frr.git/commitdiff
eigrpd: Fix route delete
authorDonald Sharp <sharpd@cumulusnetworks.com>
Sun, 2 Apr 2017 14:03:00 +0000 (10:03 -0400)
committerDonald Sharp <sharpd@cumulusnetworks.com>
Sun, 2 Apr 2017 14:03:00 +0000 (10:03 -0400)
Send the correct format of data to zebra on route delete.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
eigrpd/eigrp_zebra.c

index bd32af27982dbf6747adfd811dc98a26dba46bb5..f4f6ff2f4a4001595c43842e867bc58f82ea8538 100644 (file)
@@ -483,6 +483,7 @@ eigrp_zebra_route_delete (struct prefix_ipv4 *p, struct eigrp_neighbor_entry *te
       /* Put command, type, flags, message. */
       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_putc (s, message);
       stream_putw (s, SAFI_UNICAST);