diff options
author | Stefan Metzmacher <metze@samba.org> | 2013-08-14 10:46:28 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2013-08-15 09:07:06 +0200 |
commit | 9b4692f2d057f31f76db0bdf7c4a515db057e2dd (patch) | |
tree | 6f64d985ec6ebd1602108288640c7e7aac7b657e /source3/client | |
parent | 9193a58375691bfca9e3cce1ff61b2b6dd65a982 (diff) | |
download | samba-9b4692f2d057f31f76db0bdf7c4a515db057e2dd.tar.gz samba-9b4692f2d057f31f76db0bdf7c4a515db057e2dd.tar.bz2 samba-9b4692f2d057f31f76db0bdf7c4a515db057e2dd.zip |
s3:client: use the default io size
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3/client')
-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 44e1efd6db..ebdcbad0b3 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -55,7 +55,7 @@ static bool grepable = false; static char *cmdstr = NULL; const char *cmd_ptr = NULL; -static int io_bufsize = 524288; +static int io_bufsize = 0; /* we use the default size */ static int name_type = 0x20; static int max_protocol = -1; |