From a8003f1af2169d897775c843520d5120c1789624 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sat, 1 Mar 2008 12:05:09 +0100 Subject: Use io_bufsize as window size in smbclient get command (This used to be commit e602f06cbba852a7eacd15b2511ef2571a95cc80) --- source3/client/client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/client/client.c') diff --git a/source3/client/client.c b/source3/client/client.c index c97f6223a7..9d298ae91b 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -1046,7 +1046,7 @@ static int do_get(const char *rname, const char *lname_in, bool reget) DEBUG(1,("getting file %s of size %.0f as %s ", rname, (double)size, lname)); - status = cli_pull(targetcli, fnum, start, size, 1024*1024, + status = cli_pull(targetcli, fnum, start, size, io_bufsize, writefile_sink, (void *)&handle, &nread); if (!NT_STATUS_IS_OK(status)) { d_fprintf(stderr, "parallel_read returned %s\n", -- cgit