diff options
author | 2001-10-24 08:41:41 +0000 | |
---|---|---|
committer | 2001-10-24 08:41:41 +0000 | |
commit | 67f6160298f4fa75532a557c92e35c37a43f1939 (patch) | |
tree | 7519df0cff7f17801cf1556eecb04609df54c6d1 | |
parent | remove unused (diff) | |
download | wireguard-openbsd-67f6160298f4fa75532a557c92e35c37a43f1939.tar.xz wireguard-openbsd-67f6160298f4fa75532a557c92e35c37a43f1939.zip |
mention remote port in debug message
-rw-r--r-- | usr.bin/ssh/sshd.c | 4 |
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) |