summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2001-11-12 10:51:23 +1100
committerDamien Miller <djm@mindrot.org>2001-11-12 10:51:23 +1100
commit00b61645ebc01e2e2e880624f1c960e4e02a7f0b (patch)
tree90b52f04eb8d413866d9313a2aae8b0572024a7a
parentaba690c100734ac8bad501ecd982266571103873 (diff)
- markus@cvs.openbsd.org 2001/10/24 08:41:41
[sshd.c] mention remote port in debug message
-rw-r--r--ChangeLog6
-rw-r--r--sshd.c4
2 files changed, 7 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index c1cd7641..5e2ecfc7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,10 @@
20011112
- (djm) Makefile correctness fix from Mark D. Baushke <mdb@juniper.net>
- (djm) Cygwin config patch from Corinna Vinschen <vinschen@redhat.com>
+ - OpenBSD CVS Sync
+ - markus@cvs.openbsd.org 2001/10/24 08:41:41
+ [sshd.c]
+ mention remote port in debug message
20011109
- (stevesk) auth-pam.c: use do_pam_authenticate(PAM_DISALLOW_NULL_AUTHTOK)
@@ -6810,4 +6814,4 @@
- Wrote replacements for strlcpy and mkdtemp
- Released 1.0pre1
-$Id: ChangeLog,v 1.1634 2001/11/11 23:36:21 djm Exp $
+$Id: ChangeLog,v 1.1635 2001/11/11 23:51:23 djm Exp $
diff --git a/sshd.c b/sshd.c
index 2a730981..b2ed51e2 100644
--- a/sshd.c
+++ b/sshd.c
@@ -40,7 +40,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: sshd.c,v 1.206 2001/10/02 22:56:09 stevesk Exp $");
+RCSID("$OpenBSD: sshd.c,v 1.207 2001/10/24 08:41:41 markus Exp $");
#include <openssl/dh.h>
#include <openssl/bn.h>
@@ -1177,7 +1177,7 @@ main(int ac, char **av)
if (remote_port >= IPPORT_RESERVED ||
remote_port < IPPORT_RESERVED / 2) {
debug("Rhosts Authentication disabled, "
- "originating port not trusted.");
+ "originating port %d not trusted.", remote_port);
options.rhosts_authentication = 0;
}
#if defined(KRB4) && !defined(KRB5)