debian/rules: Use `git' potty wrapper.
[qmail] / dns.c
diff --git a/dns.c b/dns.c
index ed42787..d034382 100644 (file)
--- 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;