]> sourceware.org Git - glibc.git/commitdiff
2002-09-04 Roland McGrath <roland@redhat.com>
authorRoland McGrath <roland@gnu.org>
Thu, 5 Sep 2002 01:23:06 +0000 (01:23 +0000)
committerRoland McGrath <roland@gnu.org>
Thu, 5 Sep 2002 01:23:06 +0000 (01:23 +0000)
* resolv/nss_dns/dns-network.c (MAXPACKET): Increase minimum value
from 1024 to 65536, to avoid buffer overrun.

resolv/nss_dns/dns-network.c

index 88166531b33ba57f7e8aebb9ca00a0813b114e0f..774c868d2f6d3eaf7d8008b89e922d9781294ea5 100644 (file)
 #define MAX_NR_ALIASES 48
 
 
-#if PACKETSZ > 1024
-#define MAXPACKET       PACKETSZ
+#if PACKETSZ > 65536
+# define MAXPACKET     PACKETSZ
 #else
-#define MAXPACKET       1024
+# define MAXPACKET     65536
 #endif
 
 
This page took 0.038833 seconds and 5 git commands to generate.