From db81860c7c2c1bc7a68d94d62852929f80afc123 Mon Sep 17 00:00:00 2001 From: pabs Date: Thu, 23 Aug 2007 01:25:27 -0400 Subject: fix crc names. --- zipstream.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'zipstream.php') diff --git a/zipstream.php b/zipstream.php index 43e847a..8a6d67f 100644 --- a/zipstream.php +++ b/zipstream.php @@ -116,12 +116,12 @@ class ZipStream { ################### function add_to_cdr($name, $time, $crc, $zlen, $len, $rec_len) { - $this->files[] = array($name, $time, $crc32, $zlen, $len, $this->ofs); + $this->files[] = array($name, $time, $crc, $zlen, $len, $this->ofs); $this->ofs += $rec_len; } function add_cdr_file($args) { - list ($name, $time, $crc32, $zlen, $len, $ofs) = $args; + list ($name, $time, $crc, $zlen, $len, $ofs) = $args; $fields = array( # (from V,F of APPNOTE.TXT) array('V', 0x02014b50), # central file header signature -- cgit v1.2.3