From 23b1f400488df822664e62c41fa24dde9c17913d Mon Sep 17 00:00:00 2001 From: Renato Westphal Date: Thu, 4 Aug 2016 10:07:24 -0300 Subject: [PATCH] zebra: fix build on OpenBSD >= 5.9 RTF_XRESOLVE was removed from the OpenBSD tree recently. Signed-off-by: Renato Westphal --- zebra/kernel_socket.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/zebra/kernel_socket.c b/zebra/kernel_socket.c index b47ee787e8..f9df983abf 100644 --- a/zebra/kernel_socket.c +++ b/zebra/kernel_socket.c @@ -240,7 +240,9 @@ static const struct message rtm_flag_str[] = #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 */ -- 2.39.5