From c15a054b21a912285b628802b6e94553cb9a927d Mon Sep 17 00:00:00 2001 From: Anton Blanchard Date: Thu, 25 Jan 2001 06:40:44 +0000 Subject: io_bufsize was set too large and so full length reads and writes got broken up into one ~64k and one ~1k packet. (This used to be commit b91f9064673a8ff11a3c0ea2ac40c3f39fa2a2d7) --- source3/client/client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/client') diff --git a/source3/client/client.c b/source3/client/client.c index 8405926121..4554a96320 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -40,7 +40,7 @@ static pstring username; static pstring workgroup; static char *cmdstr; static BOOL got_pass; -static int io_bufsize = 65520; +static int io_bufsize = 64512; extern struct in_addr ipzero; static int name_type = 0x20; -- cgit