aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Evans <kevans@FreeBSD.org>2021-03-24 04:31:02 +0000
committerKyle Evans <kevans@FreeBSD.org>2021-04-01 17:29:20 +0000
commite0ad785a5d29d33ff8f382ddf055950444cc92e2 (patch)
tree90c213d0d1abf5a6f3f766cef45fccf76611e7fc
parent223d6caabd2ebaa8f0498a4e33b3418661173dad (diff)
downloadsrc-e0ad785a5d29d33ff8f382ddf055950444cc92e2.tar.gz
src-e0ad785a5d29d33ff8f382ddf055950444cc92e2.zip
libevent1: fix layout of duplicated RB_ENTRY() definition
3a509754ded1 removed the color field from our definition, but libevent1 has a copy of it off to the side to prevent event.h consumers from *needing* to pull in sys/queue.h and sys/tree.h. Update the event.h definition so that we don't accidentally end up with two different views of struct event. This appears to have no functional effect on anything in tree, but this came up in a local patch to port if_switch(4) and related components from OpenBSD. (cherry picked from commit 64c01719e476923fe1b24e5a6c6012a677cd017f)
-rw-r--r--contrib/pf/libevent/event.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/contrib/pf/libevent/event.h b/contrib/pf/libevent/event.h
index 3f2032dd068e..0c19201611b5 100644
--- a/contrib/pf/libevent/event.h
+++ b/contrib/pf/libevent/event.h
@@ -73,7 +73,6 @@ struct { \
struct type *rbe_left; /* left element */ \
struct type *rbe_right; /* right element */ \
struct type *rbe_parent; /* parent element */ \
- int rbe_color; /* node color */ \
}
#endif /* !RB_ENTRY */