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 /ospf6d | |
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 'ospf6d')
-rw-r--r-- | ospf6d/ospf6_zebra.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ospf6d/ospf6_zebra.c b/ospf6d/ospf6_zebra.c index b4381cf81..6dee1424a 100644 --- a/ospf6d/ospf6_zebra.c +++ b/ospf6d/ospf6_zebra.c @@ -229,7 +229,7 @@ ospf6_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. */ |