From 1448a52296946ff085db120604c5a87d1a5c458a Mon Sep 17 00:00:00 2001 From: Brian Wellington Date: Wed, 9 May 2001 00:16:48 +0000 Subject: [PATCH] the output buffer should be 64K, not 4000 bytes. --- bin/tests/wire_test.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/tests/wire_test.c b/bin/tests/wire_test.c index c69cc92cc6..58ed0556e6 100644 --- a/bin/tests/wire_test.c +++ b/bin/tests/wire_test.c @@ -15,7 +15,7 @@ * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: wire_test.c,v 1.56 2001/03/13 02:48:54 bwelling Exp $ */ +/* $Id: wire_test.c,v 1.57 2001/05/09 00:16:48 bwelling Exp $ */ #include @@ -62,7 +62,7 @@ main(int argc, char *argv[]) { int n; FILE *f; isc_boolean_t need_close = ISC_FALSE; - unsigned char b[4000]; + unsigned char b[64 * 1024]; char s[4000]; dns_message_t *message; isc_result_t result;