From: Darren Tucker Date: Thu, 10 Feb 2022 11:17:31 +0000 (+1100) Subject: We now support POLLPRI so actually define it. X-Git-Tag: V_8_9_P1~28 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3ac00dfeb54b252c15dcbf1971582e9e3b946de6;p=thirdparty%2Fopenssh-portable.git We now support POLLPRI so actually define it. --- diff --git a/openbsd-compat/bsd-poll.h b/openbsd-compat/bsd-poll.h index 73acd3c17..fb99b66f2 100644 --- a/openbsd-compat/bsd-poll.h +++ b/openbsd-compat/bsd-poll.h @@ -46,13 +46,13 @@ typedef struct pollfd { } pollfd_t; #define POLLIN 0x0001 +#define POLLPRI 0x0002 #define POLLOUT 0x0004 #define POLLERR 0x0008 #define POLLHUP 0x0010 #define POLLNVAL 0x0020 #if 0 /* the following are currently not implemented */ -#define POLLPRI 0x0002 #define POLLRDNORM 0x0040 #define POLLNORM POLLRDNORM #define POLLWRNORM POLLOUT