diff options
author | Darren Tucker <dtucker@dtucker.net> | 2021-11-18 13:05:34 +0100 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2021-11-18 13:06:35 +0100 |
commit | b544ce1ad4afb7ee2b09f714aa63efffc73fa93a (patch) | |
tree | 489a5de8278256282293c75dd7214e31024fef8a /sshd.c | |
parent | upstream: check for POLLHUP wherever we check for POLLIN (diff) | |
download | openssh-b544ce1ad4afb7ee2b09f714aa63efffc73fa93a.tar.xz openssh-b544ce1ad4afb7ee2b09f714aa63efffc73fa93a.zip |
Put poll.h inside ifdef HAVE_POLL_H.
Diffstat (limited to 'sshd.c')
-rw-r--r-- | sshd.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -64,7 +64,9 @@ #include <paths.h> #endif #include <grp.h> +#ifdef HAVE_POLL_H #include <poll.h> +#endif #include <pwd.h> #include <signal.h> #include <stdarg.h> |