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 8816653..774c868 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