diff options
Diffstat (limited to 'lib/zclient.c')
| -rw-r--r-- | lib/zclient.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/zclient.c b/lib/zclient.c index 714888a3f3..fc4d37458c 100644 --- a/lib/zclient.c +++ b/lib/zclient.c @@ -1210,6 +1210,7 @@ stream_failure: } bool zapi_route_notify_decode(struct stream *s, struct prefix *p, + uint32_t *tableid, enum zapi_route_notify_owner *note) { STREAM_GET(note, s, sizeof(*note)); @@ -1218,6 +1219,7 @@ bool zapi_route_notify_decode(struct stream *s, struct prefix *p, STREAM_GETC(s, p->prefixlen); STREAM_GET(&p->u.prefix, s, PSIZE(p->prefixlen)); + STREAM_GETL(s, *tableid); return true; |
