diff options
author | Damien Miller <djm@mindrot.org> | 2001-11-12 00:51:23 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2001-11-12 00:51:23 +0100 |
commit | 00b61645ebc01e2e2e880624f1c960e4e02a7f0b (patch) | |
tree | 90b52f04eb8d413866d9313a2aae8b0572024a7a /sshd.c | |
parent | - (djm) Cygwin config patch from Corinna Vinschen <vinschen@redhat.com> (diff) | |
download | openssh-00b61645ebc01e2e2e880624f1c960e4e02a7f0b.tar.xz openssh-00b61645ebc01e2e2e880624f1c960e4e02a7f0b.zip |
- markus@cvs.openbsd.org 2001/10/24 08:41:41
[sshd.c]
mention remote port in debug message
Diffstat (limited to 'sshd.c')
-rw-r--r-- | sshd.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |