diff options
| author | Donatas Abraitis <donatas.abraitis@gmail.com> | 2020-03-18 14:29:27 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-18 14:29:27 +0200 |
| commit | ce1234aa0b82e490e10837ec0609626e09bb3648 (patch) | |
| tree | 78ae59005a9b0be961866f6dd9730ea779d5d826 | |
| parent | 2a7280e2e5c406da251dca969974cac1f57da3d6 (diff) | |
| parent | 72c54143bbfca2d16b702900d321ef8ea26ba2c0 (diff) | |
Merge pull request #6020 from donaldsharp/cbit_bs
zebra: Add missing c-bit uint8_t
| -rw-r--r-- | zebra/zebra_ptm_redistribute.c | 3 |
1 files changed, 3 insertions, 0 deletions
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)); |
