- (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.
This commit is contained in:
parent
916fdda401
commit
440089afe0
|
@ -1,3 +1,8 @@
|
|||
20090713
|
||||
- (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.
|
||||
|
||||
20090712
|
||||
- (dtucker) [configure.ac] Include sys/param.h for the sys/mount.h test,
|
||||
prevents configure complaining on older BSDs.
|
||||
|
|
|
@ -143,7 +143,7 @@ u_int32_t _getlong(register const u_char *);
|
|||
|
||||
/* ************** */
|
||||
|
||||
#define ANSWER_BUFFER_SIZE 1024*64
|
||||
#define ANSWER_BUFFER_SIZE 0xffff
|
||||
|
||||
struct dns_query {
|
||||
char *name;
|
||||
|
|
Loading…
Reference in New Issue