From: damien Date: Tue, 21 Dec 1999 13:12:38 +0000 (+0000) Subject: - Fix undefined fd_set type in ssh.h from Povl H. Pedersen X-Git-Tag: V_1_2_1_PRE20~2 X-Git-Url: http://andersk.mit.edu/gitweb/openssh.git/commitdiff_plain/eef6f7e920a337fd37a903512bdc079ac2db114b - Fix undefined fd_set type in ssh.h from Povl H. Pedersen --- diff --git a/ChangeLog b/ChangeLog index 71ec2864..0d42093a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +19991222 + - Fix undefined fd_set type in ssh.h from Povl H. Pedersen + + 19991221 - Integration of large HPUX patch from Andre Lucas . Integrating it had a few other diff --git a/ssh.h b/ssh.h index 3bcb2e07..5b676f4d 100644 --- a/ssh.h +++ b/ssh.h @@ -21,7 +21,9 @@ #include /* For struct sockaddr_in */ #include /* For struct pw */ #include /* For va_list */ - +#ifdef HAVE_SYS_SELECT_H +# include +#endif #include "rsa.h" #include "cipher.h"