- Compilation fix from Kiyokazu SUTO <suto@ks-and-ks.ne.jp>

This commit is contained in:
Damien Miller 2000-01-16 18:19:25 +11:00
parent 5eed6a2d71
commit 8f92649441
3 changed files with 5 additions and 1 deletions

View File

@ -20,6 +20,7 @@ Jim Knoble <jmknoble@pobox.com> - Many patches
jonchen (email unknown) - the original author of PAM support of SSH jonchen (email unknown) - the original author of PAM support of SSH
Juergen Keil <jk@tools.de> - scp bugfixing Juergen Keil <jk@tools.de> - scp bugfixing
Kees Cook <cook@cpoint.net> - scp fixes Kees Cook <cook@cpoint.net> - scp fixes
Kiyokazu SUTO <suto@ks-and-ks.ne.jp> - Bugfixes
Marc G. Fournier <marc.fournier@acadiau.ca> - Solaris patches Marc G. Fournier <marc.fournier@acadiau.ca> - Solaris patches
Nalin Dahyabhai <nalin.dahyabhai@pobox.com> - PAM environment patch Nalin Dahyabhai <nalin.dahyabhai@pobox.com> - PAM environment patch
Niels Kristian Bech Jensen <nkbj@image.dk> - Assorted patches Niels Kristian Bech Jensen <nkbj@image.dk> - Assorted patches

View File

@ -3,6 +3,8 @@
- Added --with-pid-dir option - Added --with-pid-dir option
- Released 1.2.1pre26 - Released 1.2.1pre26
- Compilation fix from Kiyokazu SUTO <suto@ks-and-ks.ne.jp>
20000115 20000115
- Add --with-xauth-path configure directive and explicit test for - Add --with-xauth-path configure directive and explicit test for
/usr/openwin/bin/xauth for Solaris systems. Report from Anders /usr/openwin/bin/xauth for Solaris systems. Report from Anders

View File

@ -7,6 +7,7 @@
#ifndef AI_PASSIVE #ifndef AI_PASSIVE
# define AI_PASSIVE 1 # define AI_PASSIVE 1
# define AI_CANONNAME 2
#endif #endif
#ifndef NI_NUMERICHOST #ifndef NI_NUMERICHOST
@ -25,7 +26,7 @@ struct addrinfo {
char *ai_canonname; /* canonical name for hostname */ char *ai_canonname; /* canonical name for hostname */
struct sockaddr *ai_addr; /* binary address */ struct sockaddr *ai_addr; /* binary address */
struct addrinfo *ai_next; /* next structure in linked list */ struct addrinfo *ai_next; /* next structure in linked list */
} };
#endif /* !HAVE_STRUCT_ADDRINFO */ #endif /* !HAVE_STRUCT_ADDRINFO */
#ifndef HAVE_GETADDRINFO #ifndef HAVE_GETADDRINFO