diff options
author | Darren Tucker <dtucker@dtucker.net> | 2019-10-28 05:53:25 +0100 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2019-10-28 06:27:53 +0100 |
commit | 6fc7e1c6fec3ba589869ae98e968c0e5e2e4695b (patch) | |
tree | ba9d0940364de84f789236e026577887af2e43c9 /kex.c | |
parent | Add a function call stackprotector tests. (diff) | |
download | openssh-6fc7e1c6fec3ba589869ae98e968c0e5e2e4695b.tar.xz openssh-6fc7e1c6fec3ba589869ae98e968c0e5e2e4695b.zip |
Wrap poll.h includes in HAVE_POLL_H.
Diffstat (limited to 'kex.c')
-rw-r--r-- | kex.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -33,7 +33,9 @@ #include <stdlib.h> #include <string.h> #include <unistd.h> +#ifdef HAVE_POLL_H #include <poll.h> +#endif #ifdef WITH_OPENSSL #include <openssl/crypto.h> |