]> git.ipfire.org Git - thirdparty/libarchive.git/commitdiff
Actually rename the bytecrc32 function...
authorJoerg Sonnenberger <joerg.sonnenberger@gmail.com>
Tue, 26 May 2009 15:07:11 +0000 (11:07 -0400)
committerJoerg Sonnenberger <joerg.sonnenberger@gmail.com>
Tue, 26 May 2009 15:07:11 +0000 (11:07 -0400)
SVN-Revision: 1122

libarchive/archive_write_set_format_zip.c

index b0f8649634b218df4d8b18bc314c638049446e80..501cb2cd554be1ff664a01fdce83d41dac112036 100644 (file)
@@ -623,7 +623,7 @@ write_path(struct archive_entry *entry, struct archive_write *archive)
  * compared to about 800MB/s for the zlib implementation.
  */
 static unsigned
-bytecrc32(unsigned c, const void *_p, size_t s)
+crc32(unsigned c, const void *_p, size_t s)
 {
        unsigned b, i;
        const unsigned char *p = _p;