summaryrefslogtreecommitdiff
path: root/ssh.h
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 /ssh.h
parente8852919f9fc42d7b61ffcfd3c3d86de84d69ad8 (diff)
downloadopenssh-git-365199d8a5a508bf8b197352f2a585df051de607.tar.gz
- Fix undefined fd_set type in ssh.h from Povl H. Pedersen
<pope@netguide.dk>
Diffstat (limited to 'ssh.h')
-rw-r--r--ssh.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/ssh.h b/ssh.h
index 86780c0f..0efabda8 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 <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"