diff options
author | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2017-12-10 13:16:31 +0100 |
---|---|---|
committer | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2017-12-10 13:16:31 +0100 |
commit | a32a7b58cebc2838de2ffd94e679d3e1ec9d493a (patch) | |
tree | 946d39c92a464054bcf050772eb7657315488639 /proto | |
parent | 7fc55925beb06059759294e0e9b7bae45465395f (diff) |
Lib: Fix macro/keyword collisions
Old code breaks with some versions of bison
Diffstat (limited to 'proto')
-rw-r--r-- | proto/static/static.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/static/static.h b/proto/static/static.h index b202c0b1..a3c30b87 100644 --- a/proto/static/static.h +++ b/proto/static/static.h @@ -25,7 +25,7 @@ struct static_proto { struct proto p; struct event *event; /* Event for announcing updated routes */ - BUFFER(struct static_route *) marked; /* Routes marked for reannouncement */ + BUFFER_(struct static_route *) marked; /* Routes marked for reannouncement */ rtable *igp_table_ip4; /* Table for recursive IPv4 next hop lookups */ rtable *igp_table_ip6; /* Table for recursive IPv6 next hop lookups */ }; |