X-Git-Url: https://git.distorted.org.uk/~mdw/qmail/blobdiff_plain/212b6f5da7c68d4577de2855da3c57ecf476dc96..HEAD:/dns.c diff --git a/dns.c b/dns.c index ed42787..d034382 100644 --- a/dns.c +++ b/dns.c @@ -21,7 +21,7 @@ extern int h_errno; static unsigned short getshort(c) unsigned char *c; { unsigned short u; u = c[0]; return (u << 8) + c[1]; } -static union { HEADER hdr; unsigned char buf[PACKETSZ]; } response; +static union { HEADER hdr; unsigned char buf[65536]; } response; static int responselen; static unsigned char *responseend; static unsigned char *responsepos;