summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CREDITS1
-rw-r--r--ChangeLog2
-rw-r--r--fake-getaddrinfo.h3
3 files changed, 5 insertions, 1 deletions
diff --git a/CREDITS b/CREDITS
index 05057fe25..f1012569d 100644
--- a/CREDITS
+++ b/CREDITS
@@ -20,6 +20,7 @@ Jim Knoble <jmknoble@pobox.com> - Many patches
20jonchen (email unknown) - the original author of PAM support of SSH 20jonchen (email unknown) - the original author of PAM support of SSH
21Juergen Keil <jk@tools.de> - scp bugfixing 21Juergen Keil <jk@tools.de> - scp bugfixing
22Kees Cook <cook@cpoint.net> - scp fixes 22Kees Cook <cook@cpoint.net> - scp fixes
23Kiyokazu SUTO <suto@ks-and-ks.ne.jp> - Bugfixes
23Marc G. Fournier <marc.fournier@acadiau.ca> - Solaris patches 24Marc G. Fournier <marc.fournier@acadiau.ca> - Solaris patches
24Nalin Dahyabhai <nalin.dahyabhai@pobox.com> - PAM environment patch 25Nalin Dahyabhai <nalin.dahyabhai@pobox.com> - PAM environment patch
25Niels Kristian Bech Jensen <nkbj@image.dk> - Assorted patches 26Niels Kristian Bech Jensen <nkbj@image.dk> - Assorted patches
diff --git a/ChangeLog b/ChangeLog
index 6805ff2e0..979e8ca6e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,8 @@
3 - Added --with-pid-dir option 3 - Added --with-pid-dir option
4 - Released 1.2.1pre26 4 - Released 1.2.1pre26
5 5
6 - Compilation fix from Kiyokazu SUTO <suto@ks-and-ks.ne.jp>
7
620000115 820000115
7 - Add --with-xauth-path configure directive and explicit test for 9 - Add --with-xauth-path configure directive and explicit test for
8 /usr/openwin/bin/xauth for Solaris systems. Report from Anders 10 /usr/openwin/bin/xauth for Solaris systems. Report from Anders
diff --git a/fake-getaddrinfo.h b/fake-getaddrinfo.h
index de1748f6f..7da87142d 100644
--- a/fake-getaddrinfo.h
+++ b/fake-getaddrinfo.h
@@ -7,6 +7,7 @@
7 7
8#ifndef AI_PASSIVE 8#ifndef AI_PASSIVE
9# define AI_PASSIVE 1 9# define AI_PASSIVE 1
10# define AI_CANONNAME 2
10#endif 11#endif
11 12
12#ifndef NI_NUMERICHOST 13#ifndef NI_NUMERICHOST
@@ -25,7 +26,7 @@ struct addrinfo {
25 char *ai_canonname; /* canonical name for hostname */ 26 char *ai_canonname; /* canonical name for hostname */
26 struct sockaddr *ai_addr; /* binary address */ 27 struct sockaddr *ai_addr; /* binary address */
27 struct addrinfo *ai_next; /* next structure in linked list */ 28 struct addrinfo *ai_next; /* next structure in linked list */
28} 29};
29#endif /* !HAVE_STRUCT_ADDRINFO */ 30#endif /* !HAVE_STRUCT_ADDRINFO */
30 31
31#ifndef HAVE_GETADDRINFO 32#ifndef HAVE_GETADDRINFO