diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-09-23 18:11:21 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-09-23 18:11:21 +0200 |
commit | b99c382167cae31082e3eed7a4bb2ddb294dbad8 (patch) | |
tree | 0aaaad32dcb53d7225851aae14389f37574c6291 /ripngd | |
parent | Revert "zebra: use link scope for interface routes" (diff) | |
download | frr-b99c382167cae31082e3eed7a4bb2ddb294dbad8.tar.xz frr-b99c382167cae31082e3eed7a4bb2ddb294dbad8.zip |
Revert "Make route flags a 32bit field"
This reverts commit 85eda2c98520a9553bdc05c136618f9d04917e9b.
Diffstat (limited to 'ripngd')
-rw-r--r-- | ripngd/ripng_zebra.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ripngd/ripng_zebra.c b/ripngd/ripng_zebra.c index 803fd7415..1184cd0db 100644 --- a/ripngd/ripng_zebra.c +++ b/ripngd/ripng_zebra.c @@ -143,7 +143,7 @@ ripng_zebra_read_ipv6 (int command, struct zclient *zclient, /* Type, flags, message. */ api.type = stream_getc (s); api.instance = stream_getw (s); - api.flags = stream_getl (s); + api.flags = stream_getc (s); api.message = stream_getc (s); /* IPv6 prefix. */ |