summaryrefslogtreecommitdiffstats
path: root/iutil.py
diff options
context:
space:
mode:
authorErik Troan <ewt@redhat.com>2000-05-10 23:45:03 +0000
committerErik Troan <ewt@redhat.com>2000-05-10 23:45:03 +0000
commite6fd48b728c3acb3cf08bd70a0d40041ad83c772 (patch)
tree454ba3ab7d6f7626a10f804610478e6760c65920 /iutil.py
parent7eb3f15e5ae3fb188bc9772897527a41e950a83c (diff)
downloadanaconda-e6fd48b728c3acb3cf08bd70a0d40041ad83c772.tar.gz
anaconda-e6fd48b728c3acb3cf08bd70a0d40041ad83c772.tar.xz
anaconda-e6fd48b728c3acb3cf08bd70a0d40041ad83c772.zip
raised block size to 256k
Diffstat (limited to 'iutil.py')
-rw-r--r--iutil.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/iutil.py b/iutil.py
index db07af7c0..a2cd63391 100644
--- a/iutil.py
+++ b/iutil.py
@@ -132,7 +132,7 @@ def copyFile(source, to):
f = os.open(source, os.O_RDONLY)
t = os.open(to, os.O_RDWR | os.O_TRUNC | os.O_CREAT)
- count = os.read(f, 16384)
+ count = os.read(f, 262144)
while (count):
os.write(t, count)
count = os.read(f, 16384)