diff options
author | Anton Blanchard <anton@samba.org> | 2001-01-25 06:40:44 +0000 |
---|---|---|
committer | Anton Blanchard <anton@samba.org> | 2001-01-25 06:40:44 +0000 |
commit | c15a054b21a912285b628802b6e94553cb9a927d (patch) | |
tree | b30aeab8b08a925c041d69bc447b1c6b60d814ff /source3/client/client.c | |
parent | 5aef8a21c6e3cd690afb11d2d69d2e9bac25b6b4 (diff) | |
download | samba-c15a054b21a912285b628802b6e94553cb9a927d.tar.gz samba-c15a054b21a912285b628802b6e94553cb9a927d.tar.bz2 samba-c15a054b21a912285b628802b6e94553cb9a927d.zip |
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)
Diffstat (limited to 'source3/client/client.c')
-rw-r--r-- | source3/client/client.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |