summaryrefslogtreecommitdiff
path: root/sshd.c
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 /sshd.c
parentaba690c100734ac8bad501ecd982266571103873 (diff)
- 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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sshd.c b/sshd.c
index 2a7309816..b2ed51e24 100644
--- a/sshd.c
+++ b/sshd.c
@@ -40,7 +40,7 @@
40 */ 40 */
41 41
42#include "includes.h" 42#include "includes.h"
43RCSID("$OpenBSD: sshd.c,v 1.206 2001/10/02 22:56:09 stevesk Exp $"); 43RCSID("$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)