summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>1999-12-22 00:12:38 +1100
committerDamien Miller <djm@mindrot.org>1999-12-22 00:12:38 +1100
commit365199d8a5a508bf8b197352f2a585df051de607 (patch)
treee0e92cbd4bab252ae540602933eec687d3c8f7f9
parente8852919f9fc42d7b61ffcfd3c3d86de84d69ad8 (diff)
- Fix undefined fd_set type in ssh.h from Povl H. Pedersen
<pope@netguide.dk>
-rw-r--r--ChangeLog4
-rw-r--r--ssh.h6
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 @@
119991222
2 - Fix undefined fd_set type in ssh.h from Povl H. Pedersen
3 <pope@netguide.dk>
4
119991221 519991221
2 - Integration of large HPUX patch from Andre Lucas 6 - Integration of large HPUX patch from Andre Lucas
3 <andre.lucas@dial.pipex.com>. Integrating it had a few other 7 <andre.lucas@dial.pipex.com>. 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 @@
13 * 13 *
14 */ 14 */
15 15
16/* RCSID("$Id: ssh.h,v 1.20 1999/12/13 23:47:16 damien Exp $"); */ 16/* RCSID("$Id: ssh.h,v 1.21 1999/12/21 13:12:39 damien Exp $"); */
17 17
18#ifndef SSH_H 18#ifndef SSH_H
19#define SSH_H 19#define SSH_H
@@ -21,7 +21,9 @@
21#include <netinet/in.h> /* For struct sockaddr_in */ 21#include <netinet/in.h> /* For struct sockaddr_in */
22#include <pwd.h> /* For struct pw */ 22#include <pwd.h> /* For struct pw */
23#include <stdarg.h> /* For va_list */ 23#include <stdarg.h> /* For va_list */
24 24#ifdef HAVE_SYS_SELECT_H
25# include <sys/select.h>
26#endif
25#include "rsa.h" 27#include "rsa.h"
26#include "cipher.h" 28#include "cipher.h"
27 29