- itojun@cvs.openbsd.org 2002/06/11 08:11:45
[canohost.c] use "ntop" only after initialized
This commit is contained in:
parent
ce0f634270
commit
9a17c9a568
|
@ -39,6 +39,9 @@
|
||||||
[auth-krb4.c monitor.h serverloop.c session.c ssh-agent.c sshd.c]
|
[auth-krb4.c monitor.h serverloop.c session.c ssh-agent.c sshd.c]
|
||||||
pid_t cleanup. Markus need this now to keep hacking.
|
pid_t cleanup. Markus need this now to keep hacking.
|
||||||
markus@, millert@ ok
|
markus@, millert@ ok
|
||||||
|
- itojun@cvs.openbsd.org 2002/06/11 08:11:45
|
||||||
|
[canohost.c]
|
||||||
|
use "ntop" only after initialized
|
||||||
|
|
||||||
20020609
|
20020609
|
||||||
- (bal) OpenBSD CVS Sync
|
- (bal) OpenBSD CVS Sync
|
||||||
|
@ -904,4 +907,4 @@
|
||||||
- (stevesk) entropy.c: typo in debug message
|
- (stevesk) entropy.c: typo in debug message
|
||||||
- (djm) ssh-keygen -i needs seeded RNG; report from markus@
|
- (djm) ssh-keygen -i needs seeded RNG; report from markus@
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.2209 2002/06/11 16:42:49 mouring Exp $
|
$Id: ChangeLog,v 1.2210 2002/06/11 16:47:22 mouring Exp $
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
RCSID("$OpenBSD: canohost.c,v 1.31 2002/02/27 21:23:13 stevesk Exp $");
|
RCSID("$OpenBSD: canohost.c,v 1.32 2002/06/11 08:11:45 itojun Exp $");
|
||||||
|
|
||||||
#include "packet.h"
|
#include "packet.h"
|
||||||
#include "xmalloc.h"
|
#include "xmalloc.h"
|
||||||
|
@ -64,13 +64,14 @@ get_remote_hostname(int socket, int verify_reverse_mapping)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
if (from.ss_family == AF_INET)
|
|
||||||
check_ip_options(socket, ntop);
|
|
||||||
|
|
||||||
if (getnameinfo((struct sockaddr *)&from, fromlen, ntop, sizeof(ntop),
|
if (getnameinfo((struct sockaddr *)&from, fromlen, ntop, sizeof(ntop),
|
||||||
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");
|
||||||
|
|
||||||
|
if (from.ss_family == AF_INET)
|
||||||
|
check_ip_options(socket, ntop);
|
||||||
|
|
||||||
debug3("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),
|
||||||
|
|
Loading…
Reference in New Issue