]> andersk Git - openssh.git/commitdiff
- Fix undefined fd_set type in ssh.h from Povl H. Pedersen
authordamien <damien>
Tue, 21 Dec 1999 13:12:38 +0000 (13:12 +0000)
committerdamien <damien>
Tue, 21 Dec 1999 13:12:38 +0000 (13:12 +0000)
   <pope@netguide.dk>

ChangeLog
ssh.h

index 71ec2864b3d2758e19eb1115913bba7b23176fde..0d42093a4167942278dc8a8e2fbcc42cdbcd1fed 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+19991222
+ - Fix undefined fd_set type in ssh.h from Povl H. Pedersen 
+   <pope@netguide.dk>
+
 19991221
  - Integration of large HPUX patch from Andre Lucas 
    <andre.lucas@dial.pipex.com>. Integrating it had a few other 
diff --git a/ssh.h b/ssh.h
index 3bcb2e07c12ab44349a1ab99a6637e85331beb63..5b676f4d1b3de34fb2d274b1a10a57029d5567c5 100644 (file)
--- a/ssh.h
+++ b/ssh.h
@@ -21,7 +21,9 @@
 #include <netinet/in.h> /* For struct sockaddr_in */
 #include <pwd.h> /* For struct pw */
 #include <stdarg.h> /* For va_list */
-
+#ifdef HAVE_SYS_SELECT_H
+# include <sys/select.h>
+#endif
 #include "rsa.h"
 #include "cipher.h"
 
This page took 0.059205 seconds and 5 git commands to generate.