summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Friedl <markus@cvs.openbsd.org>2001-10-24 08:41:42 +0000
committerMarkus Friedl <markus@cvs.openbsd.org>2001-10-24 08:41:42 +0000
commite472047fce9f5140446bd2edc2c03178a30906b4 (patch)
treeabfe23e9d2d062d8971c5efc4ce62dd4796e6e75
parenta413a9c1e0014d084a175d3b741286bf8fc657e0 (diff)
mention remote port in debug message
-rw-r--r--usr.bin/ssh/sshd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/sshd.c b/usr.bin/ssh/sshd.c
index ec9dce22f58..86f509519ad 100644
--- a/usr.bin/ssh/sshd.c
+++ b/usr.bin/ssh/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>
@@ -1149,7 +1149,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)