summaryrefslogtreecommitdiff
path: root/openbsd-compat/getrrsetbyname.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2009-07-13 11:38:23 +1000
committerDarren Tucker <dtucker@zip.com.au>2009-07-13 11:38:23 +1000
commit440089afe071817443c15d8914097a43e0485a89 (patch)
treefab8f8386c569c755d90e462654a52aabcc45659 /openbsd-compat/getrrsetbyname.c
parent916fdda4016781ad19aca0996feda4ef07fbbd49 (diff)
- (dtucker) [openbsd-compat/getrrsetbyname.c] Reduce answer buffer size so it
fits into 16 bits to work around a bug in glibc's resolver where it masks off the buffer size at 16 bits. Patch from Hauke Lampe, ok djm jakob.
Diffstat (limited to 'openbsd-compat/getrrsetbyname.c')
-rw-r--r--openbsd-compat/getrrsetbyname.c2
1 files changed, 1 insertions, 1 deletions
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;