summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
authorStephan Bergmann <sb@openoffice.org>2001-02-12 12:50:07 +0000
committerStephan Bergmann <sb@openoffice.org>2001-02-12 12:50:07 +0000
commit83d09d0108ee22a68d79bf14f1d8e9b6a28dee23 (patch)
tree70625b3b91ed6116ee2eff3a83ee35dcebdc4c29 /ucb
parentca5050c94b98b9d951dfc4145143c29c13283e7d (diff)
#83045# Increased read buffer size from 2K to 32K to increase performance.
Diffstat (limited to 'ucb')
-rw-r--r--ucb/source/ucp/file/shell.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/ucb/source/ucp/file/shell.cxx b/ucb/source/ucp/file/shell.cxx
index 3df900f6ff4b..69d2e238f01c 100644
--- a/ucb/source/ucp/file/shell.cxx
+++ b/ucb/source/ucp/file/shell.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: shell.cxx,v $
*
- * $Revision: 1.18 $
+ * $Revision: 1.19 $
*
- * last change: $Author: kso $ $Date: 2001-02-01 13:57:27 $
+ * last change: $Author: sb $ $Date: 2001-02-12 13:50:07 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -2701,7 +2701,7 @@ shell::write( sal_Int32 CommandId,
{
sal_uInt64 nTotalNumberOfBytes = 0;
sal_uInt64 nWrittenBytes;
- sal_Int32 nReadBytes = 0, nRequestedBytes = 2048;
+ sal_Int32 nReadBytes = 0, nRequestedBytes = 32768;
uno::Sequence< sal_Int8 > seq( nRequestedBytes );
do
{