зеркало из https://github.com/Azure/sonic-openssh.git
- (djm) [monitor_fdpass.c] Use sys/poll.h if poll.h doesn't exist;
bz#2237
This commit is contained in:
Родитель
8da0fa2493
Коммит
9eb4cd9a32
|
@ -1,6 +1,8 @@
|
|||
20140703
|
||||
- (djm) [digest-openssl.c configure.ac] Disable RIPEMD160 if libcrypto
|
||||
doesn't support it.
|
||||
- (djm) [monitor_fdpass.c] Use sys/poll.h if poll.h doesn't exist;
|
||||
bz#2237
|
||||
|
||||
20140702
|
||||
- OpenBSD CVS Sync
|
||||
|
|
|
@ -34,12 +34,17 @@
|
|||
#endif
|
||||
|
||||
#include <errno.h>
|
||||
#ifdef HAVE_POLL_H
|
||||
#include <poll.h>
|
||||
#endif
|
||||
#include <string.h>
|
||||
#include <stdarg.h>
|
||||
|
||||
#ifdef HAVE_POLL_H
|
||||
# include <poll.h>
|
||||
#else
|
||||
# ifdef HAVE_SYS_POLL_H
|
||||
# include <sys/poll.h>
|
||||
# endif
|
||||
#endif
|
||||
|
||||
#include "log.h"
|
||||
#include "monitor_fdpass.h"
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче