mirror of git://anongit.mindrot.org/openssh.git
- (dtucker) [openbsd-compat/fake-rfc2553.c] Add headers needed for inet_ntoa.
This commit is contained in:
parent
92350103fc
commit
2b4e38b712
|
@ -120,6 +120,7 @@
|
||||||
Typo in comment
|
Typo in comment
|
||||||
- (dtucker) [openbsd-compat/bsd-cygwin_util.c] Add headers required to compile
|
- (dtucker) [openbsd-compat/bsd-cygwin_util.c] Add headers required to compile
|
||||||
on Cygwin.
|
on Cygwin.
|
||||||
|
- (dtucker) [openbsd-compat/fake-rfc2553.c] Add headers needed for inet_ntoa.
|
||||||
|
|
||||||
20060804
|
20060804
|
||||||
- (dtucker) [configure.ac] The "crippled AES" test does not work on recent
|
- (dtucker) [configure.ac] The "crippled AES" test does not work on recent
|
||||||
|
@ -5190,4 +5191,4 @@
|
||||||
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
||||||
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.4470 2006/08/05 09:08:16 dtucker Exp $
|
$Id: ChangeLog,v 1.4471 2006/08/05 09:18:08 dtucker Exp $
|
||||||
|
|
|
@ -38,6 +38,9 @@
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
|
#include <netinet/in.h>
|
||||||
|
#include <arpa/inet.h>
|
||||||
|
|
||||||
#ifndef HAVE_GETNAMEINFO
|
#ifndef HAVE_GETNAMEINFO
|
||||||
int getnameinfo(const struct sockaddr *sa, size_t salen, char *host,
|
int getnameinfo(const struct sockaddr *sa, size_t salen, char *host,
|
||||||
size_t hostlen, char *serv, size_t servlen, int flags)
|
size_t hostlen, char *serv, size_t servlen, int flags)
|
||||||
|
|
Loading…
Reference in New Issue