mirror of
https://github.com/webmin/webmin.git
synced 2026-05-04 22:30:33 +01:00
Detach attachments faster
This commit is contained in:
@@ -55,7 +55,7 @@ if ($?) {
|
||||
# Output the ZIP
|
||||
print "Content-type: application/zip\n\n";
|
||||
open(ZIP, $zip);
|
||||
while(read(ZIP, $buf, 1024) > 0) {
|
||||
while(read(ZIP, $buf, 32768) > 0) {
|
||||
print $buf;
|
||||
}
|
||||
close(ZIP);
|
||||
|
||||
Reference in New Issue
Block a user