[sshd.c]
     mention remote port in debug message
This commit is contained in:
Damien Miller 2001-11-12 10:51:23 +11:00
parent aba690c100
commit 00b61645eb
2 changed files with 7 additions and 3 deletions

View File

@ -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 $

4
sshd.c
View File

@ -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)