summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog2
-rw-r--r--INSTALL11
-rw-r--r--README3
-rw-r--r--configure.in2
-rw-r--r--sshd.c12
5 files changed, 26 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index e22c22b1d..0bd6c4e7b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -17,6 +17,8 @@
17 - [version.h] 17 - [version.h]
18 OpenSSH-1.2.1 18 OpenSSH-1.2.1
19 - Clean up broken includes in pty.c 19 - Clean up broken includes in pty.c
20 - Some older systems don't have poll.h, they use sys/poll.h instead
21 - Doc updates
20 22
2119991211 2319991211
22 - Fix compilation on systems with AFS. Reported by 24 - Fix compilation on systems with AFS. Reported by
diff --git a/INSTALL b/INSTALL
index d3e37ca4d..de92edc42 100644
--- a/INSTALL
+++ b/INSTALL
@@ -113,6 +113,17 @@ To generate a host key, issue the following command: (replacing
113 113
114/usr/bin/ssh-keygen -b 1024 -f /etc/ssh/ssh_host_key -N '' 114/usr/bin/ssh-keygen -b 1024 -f /etc/ssh/ssh_host_key -N ''
115 115
116Replacing /etc/ssh with the correct path to the configuration directory.
117(${prefix}/etc or whatever you specified with --sysconfdir during
118configuration)
119
116For more information on configuration, please refer to the manual pages 120For more information on configuration, please refer to the manual pages
117for sshd, ssh and ssh-agent. 121for sshd, ssh and ssh-agent.
118 122
1234. Problems?
124------------
125
126If you experience problems compiling, installing or running OpenSSH.
127Please refer to the "reporting bugs" section of the webpage at
128http://violet.ibs.com.au/openssh/
129
diff --git a/README b/README
index 1f96da22c..514aeaa78 100644
--- a/README
+++ b/README
@@ -37,6 +37,9 @@ openssh-unix-dev-request@mindrot.org. This mailing list is intended
37for developers who wish to improve on this port or extend it to other 37for developers who wish to improve on this port or extend it to other
38Unices. 38Unices.
39 39
40Please send bug reports to the mailing list, or to myself
41(djm@ibs.com.au).
42
40Please refer to the INSTALL document for information on how to install 43Please refer to the INSTALL document for information on how to install
41OpenSSH on your system. 44OpenSSH on your system.
42 45
diff --git a/configure.in b/configure.in
index c4894c071..aa23baece 100644
--- a/configure.in
+++ b/configure.in
@@ -56,7 +56,7 @@ AC_CHECK_LIB(dl, dlopen, , )
56AC_CHECK_LIB(pam, pam_authenticate, , ) 56AC_CHECK_LIB(pam, pam_authenticate, , )
57 57
58dnl Checks for header files. 58dnl Checks for header files.
59AC_CHECK_HEADERS(endian.h lastlog.h login.h maillock.h netgroup.h paths.h pty.h shadow.h util.h utmp.h utmpx.h sys/select.h sys/stropts.h sys/time.h) 59AC_CHECK_HEADERS(endian.h lastlog.h login.h maillock.h netgroup.h paths.h poll.h pty.h shadow.h util.h utmp.h utmpx.h sys/poll.h sys/select.h sys/stropts.h sys/time.h)
60 60
61dnl Checks for library functions. 61dnl Checks for library functions.
62AC_CHECK_FUNCS(arc4random mkdtemp openpty _getpty setenv setlogin setproctitle snprintf strlcat strlcpy vsnprintf) 62AC_CHECK_FUNCS(arc4random mkdtemp openpty _getpty setenv setlogin setproctitle snprintf strlcat strlcpy vsnprintf)
diff --git a/sshd.c b/sshd.c
index 3e9ff907b..448ca5968 100644
--- a/sshd.c
+++ b/sshd.c
@@ -11,9 +11,15 @@
11 */ 11 */
12 12
13#include "includes.h" 13#include "includes.h"
14RCSID("$Id: sshd.c,v 1.38 1999/12/13 23:47:16 damien Exp $"); 14RCSID("$Id: sshd.c,v 1.39 1999/12/14 04:43:03 damien Exp $");
15 15
16#include <poll.h> 16#ifdef HAVE_POLL_H
17# include <poll.h>
18#else /* HAVE_POLL_H */
19# ifdef HAVE_SYS_POLL_H
20# include <sys/poll.h>
21# endif /* HAVE_SYS_POLL_H */
22#endif /* HAVE_POLL_H */
17 23
18#include "xmalloc.h" 24#include "xmalloc.h"
19#include "rsa.h" 25#include "rsa.h"