From 365199d8a5a508bf8b197352f2a585df051de607 Mon Sep 17 00:00:00 2001 From: Damien Miller Date: Wed, 22 Dec 1999 00:12:38 +1100 Subject: [PATCH] - Fix undefined fd_set type in ssh.h from Povl H. Pedersen --- ChangeLog | 4 ++++ ssh.h | 6 ++++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 71ec2864b..0d42093a4 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 86780c0fd..0efabda8f 100644 --- a/ssh.h +++ b/ssh.h @@ -13,7 +13,7 @@ * */ -/* RCSID("$Id: ssh.h,v 1.20 1999/12/13 23:47:16 damien Exp $"); */ +/* RCSID("$Id: ssh.h,v 1.21 1999/12/21 13:12:39 damien Exp $"); */ #ifndef SSH_H #define 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"