- markus@cvs.openbsd.org 2001/04/18 14:15:00
[canohost.c] debug->debug3
This commit is contained in:
parent
005dd22c97
commit
121c7852fe
|
@ -5,6 +5,10 @@
|
||||||
move auth_approval to do_authenticated().
|
move auth_approval to do_authenticated().
|
||||||
do_child(): nuke hostkeys from memory
|
do_child(): nuke hostkeys from memory
|
||||||
don't source .ssh/rc for subsystems.
|
don't source .ssh/rc for subsystems.
|
||||||
|
- markus@cvs.openbsd.org 2001/04/18 14:15:00
|
||||||
|
[canohost.c]
|
||||||
|
debug->debug3
|
||||||
|
|
||||||
20010417
|
20010417
|
||||||
- (bal) Add perl5 check for HP/UX, Removed GNUness from Makefile.in
|
- (bal) Add perl5 check for HP/UX, Removed GNUness from Makefile.in
|
||||||
and temporary commented out 'catman-do:' since it is broken. Patches
|
and temporary commented out 'catman-do:' since it is broken. Patches
|
||||||
|
@ -5152,4 +5156,4 @@
|
||||||
- Wrote replacements for strlcpy and mkdtemp
|
- Wrote replacements for strlcpy and mkdtemp
|
||||||
- Released 1.0pre1
|
- Released 1.0pre1
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.1136 2001/04/18 15:29:33 mouring Exp $
|
$Id: ChangeLog,v 1.1137 2001/04/18 15:32:44 mouring Exp $
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
RCSID("$OpenBSD: canohost.c,v 1.25 2001/04/12 19:15:24 markus Exp $");
|
RCSID("$OpenBSD: canohost.c,v 1.26 2001/04/18 14:15:00 markus Exp $");
|
||||||
|
|
||||||
#include "packet.h"
|
#include "packet.h"
|
||||||
#include "xmalloc.h"
|
#include "xmalloc.h"
|
||||||
|
@ -71,7 +71,7 @@ get_remote_hostname(int socket, int reverse_mapping_check)
|
||||||
NULL, 0, NI_NUMERICHOST) != 0)
|
NULL, 0, NI_NUMERICHOST) != 0)
|
||||||
fatal("get_remote_hostname: getnameinfo NI_NUMERICHOST failed");
|
fatal("get_remote_hostname: getnameinfo NI_NUMERICHOST failed");
|
||||||
|
|
||||||
debug("Trying to reverse map address %.100s.", ntop);
|
debug3("Trying to reverse map address %.100s.", ntop);
|
||||||
/* Map the IP address to a host name. */
|
/* Map the IP address to a host name. */
|
||||||
if (getnameinfo((struct sockaddr *)&from, fromlen, name, sizeof(name),
|
if (getnameinfo((struct sockaddr *)&from, fromlen, name, sizeof(name),
|
||||||
NULL, 0, NI_NAMEREQD) != 0) {
|
NULL, 0, NI_NAMEREQD) != 0) {
|
||||||
|
|
Loading…
Reference in New Issue