From 72c54143bbfca2d16b702900d321ef8ea26ba2c0 Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Tue, 17 Mar 2020 16:01:59 -0400 Subject: [PATCH] zebra: Add missing c-bit uint8_t Add to the ZEBRA_INTERFACE_BFD_DEST_UPDATE code path in zebra_ptm_redistribute.c the missing c-bit data. Signed-off-by: Donald Sharp --- zebra/zebra_ptm_redistribute.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/zebra/zebra_ptm_redistribute.c b/zebra/zebra_ptm_redistribute.c index 01d5114b9f..eabc2e005e 100644 --- a/zebra/zebra_ptm_redistribute.c +++ b/zebra/zebra_ptm_redistribute.c @@ -59,6 +59,9 @@ static int zsend_interface_bfd_update(int cmd, struct zserv *client, stream_put(s, &sp->u.prefix, blen); stream_putc(s, sp->prefixlen); + /* c-bit bullshit */ + stream_putc(s, 0); + /* Write packet size. */ stream_putw_at(s, 0, stream_get_endp(s));