summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnton Blanchard <anton@samba.org>2001-01-25 06:40:44 +0000
committerAnton Blanchard <anton@samba.org>2001-01-25 06:40:44 +0000
commitb91f9064673a8ff11a3c0ea2ac40c3f39fa2a2d7 (patch)
tree0b35c4de1d3eefb36868a35518efa7d34577d3af
parentd04ed97ecab846def8467f313a71ef0e5c4005f6 (diff)
downloadsamba-b91f9064673a8ff11a3c0ea2ac40c3f39fa2a2d7.tar.gz
samba-b91f9064673a8ff11a3c0ea2ac40c3f39fa2a2d7.tar.xz
samba-b91f9064673a8ff11a3c0ea2ac40c3f39fa2a2d7.zip
io_bufsize was set too large and so full length reads
and writes got broken up into one ~64k and one ~1k packet.
-rw-r--r--source/client/client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/client/client.c b/source/client/client.c
index 84059261219..4554a96320f 100644
--- a/source/client/client.c
+++ b/source/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;