summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--openbsd-compat/getrrsetbyname.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index bf016dca3..f6067e8a0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
120090713
2 - (dtucker) [openbsd-compat/getrrsetbyname.c] Reduce answer buffer size so it
3 fits into 16 bits to work around a bug in glibc's resolver where it masks
4 off the buffer size at 16 bits. Patch from Hauke Lampe, ok djm jakob.
5
120090712 620090712
2 - (dtucker) [configure.ac] Include sys/param.h for the sys/mount.h test, 7 - (dtucker) [configure.ac] Include sys/param.h for the sys/mount.h test,
3 prevents configure complaining on older BSDs. 8 prevents configure complaining on older BSDs.
diff --git a/openbsd-compat/getrrsetbyname.c b/openbsd-compat/getrrsetbyname.c
index 785b22569..98876673d 100644
--- a/openbsd-compat/getrrsetbyname.c
+++ b/openbsd-compat/getrrsetbyname.c
@@ -143,7 +143,7 @@ u_int32_t _getlong(register const u_char *);
143 143
144/* ************** */ 144/* ************** */
145 145
146#define ANSWER_BUFFER_SIZE 1024*64 146#define ANSWER_BUFFER_SIZE 0xffff
147 147
148struct dns_query { 148struct dns_query {
149 char *name; 149 char *name;