summaryrefslogtreecommitdiff
path: root/mail-mta/netqmail/files/bigdns.patch
diff options
context:
space:
mode:
Diffstat (limited to 'mail-mta/netqmail/files/bigdns.patch')
-rw-r--r--mail-mta/netqmail/files/bigdns.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/mail-mta/netqmail/files/bigdns.patch b/mail-mta/netqmail/files/bigdns.patch
new file mode 100644
index 0000000..52b4b60
--- /dev/null
+++ b/mail-mta/netqmail/files/bigdns.patch
@@ -0,0 +1,13 @@
+diff --git a/dns.c b/dns.c
+index 055ab76..7a67bb0 100644
+--- a/dns.c
++++ b/dns.c
+@@ -19,7 +19,7 @@ extern int res_search();
+ 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;