diff --git a/updown/fetch.cgi b/updown/fetch.cgi index 8bccd255e..bfa00c11a 100755 --- a/updown/fetch.cgi +++ b/updown/fetch.cgi @@ -47,7 +47,7 @@ if ($ENV{'PATH_INFO'}) { "".&html_escape($out)."")); } @st = stat($temp); - print "Content-size: $st[7]\n"; + print "Content-length: $st[7]\n"; print "Content-type: application/zip\n\n"; open(FILE, $temp); unlink($temp); @@ -79,7 +79,7 @@ if ($ENV{'PATH_INFO'}) { print "Content-Disposition: Attachment\n"; } @st = stat($file); - print "Content-size: $st[7]\n"; + print "Content-length: $st[7]\n"; print "Content-type: $type\n\n"; while() { print $_;