diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | sshd.c | 4 |
2 files changed, 7 insertions, 3 deletions
@@ -1,6 +1,10 @@ | |||
1 | 20011112 | 1 | 20011112 |
2 | - (djm) Makefile correctness fix from Mark D. Baushke <mdb@juniper.net> | 2 | - (djm) Makefile correctness fix from Mark D. Baushke <mdb@juniper.net> |
3 | - (djm) Cygwin config patch from Corinna Vinschen <vinschen@redhat.com> | 3 | - (djm) Cygwin config patch from Corinna Vinschen <vinschen@redhat.com> |
4 | - OpenBSD CVS Sync | ||
5 | - markus@cvs.openbsd.org 2001/10/24 08:41:41 | ||
6 | [sshd.c] | ||
7 | mention remote port in debug message | ||
4 | 8 | ||
5 | 20011109 | 9 | 20011109 |
6 | - (stevesk) auth-pam.c: use do_pam_authenticate(PAM_DISALLOW_NULL_AUTHTOK) | 10 | - (stevesk) auth-pam.c: use do_pam_authenticate(PAM_DISALLOW_NULL_AUTHTOK) |
@@ -6810,4 +6814,4 @@ | |||
6810 | - Wrote replacements for strlcpy and mkdtemp | 6814 | - Wrote replacements for strlcpy and mkdtemp |
6811 | - Released 1.0pre1 | 6815 | - Released 1.0pre1 |
6812 | 6816 | ||
6813 | $Id: ChangeLog,v 1.1634 2001/11/11 23:36:21 djm Exp $ | 6817 | $Id: ChangeLog,v 1.1635 2001/11/11 23:51:23 djm Exp $ |
@@ -40,7 +40,7 @@ | |||
40 | */ | 40 | */ |
41 | 41 | ||
42 | #include "includes.h" | 42 | #include "includes.h" |
43 | RCSID("$OpenBSD: sshd.c,v 1.206 2001/10/02 22:56:09 stevesk Exp $"); | 43 | RCSID("$OpenBSD: sshd.c,v 1.207 2001/10/24 08:41:41 markus Exp $"); |
44 | 44 | ||
45 | #include <openssl/dh.h> | 45 | #include <openssl/dh.h> |
46 | #include <openssl/bn.h> | 46 | #include <openssl/bn.h> |
@@ -1177,7 +1177,7 @@ main(int ac, char **av) | |||
1177 | if (remote_port >= IPPORT_RESERVED || | 1177 | if (remote_port >= IPPORT_RESERVED || |
1178 | remote_port < IPPORT_RESERVED / 2) { | 1178 | remote_port < IPPORT_RESERVED / 2) { |
1179 | debug("Rhosts Authentication disabled, " | 1179 | debug("Rhosts Authentication disabled, " |
1180 | "originating port not trusted."); | 1180 | "originating port %d not trusted.", remote_port); |
1181 | options.rhosts_authentication = 0; | 1181 | options.rhosts_authentication = 0; |
1182 | } | 1182 | } |
1183 | #if defined(KRB4) && !defined(KRB5) | 1183 | #if defined(KRB4) && !defined(KRB5) |