commit | a64c66b105929b0f0fc19743f34dc29c760df967 | [log] [tgz] |
---|---|---|
author | Renato Westphal <renato@opensourcerouting.org> | Fri Jan 06 16:30:03 2017 +0700 |
committer | Paul Jakma <paul@quagga.net> | Mon Jan 23 17:20:50 2017 +0000 |
tree | a8aa6907f32b27db0348501262513d6109c1a03a | |
parent | 99e00a19bb8afcf081d1551b886c6d85188e6c60 [diff] |
zebra: fix build on OpenBSD >= 5.9 RTF_XRESOLVE was removed from the OpenBSD tree recently.
diff --git a/zebra/kernel_socket.c b/zebra/kernel_socket.c index 5e68c56..64c6cbb 100644 --- a/zebra/kernel_socket.c +++ b/zebra/kernel_socket.c
@@ -242,7 +242,9 @@ #ifdef RTF_CLONING {RTF_CLONING, "CLONING"}, #endif /* RTF_CLONING */ +#ifdef RTF_XRESOLVE {RTF_XRESOLVE, "XRESOLVE"}, +#endif /* RTF_XRESOLVE */ #ifdef RTF_LLINFO {RTF_LLINFO, "LLINFO"}, #endif /* RTF_LLINFO */