From: Joerg Sonnenberger Date: Tue, 26 May 2009 15:07:11 +0000 (-0400) Subject: Actually rename the bytecrc32 function... X-Git-Tag: v2.8.0~622 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ded4d4ab0627fdfaecd1f250979d4d7cbad6e256;p=thirdparty%2Flibarchive.git Actually rename the bytecrc32 function... SVN-Revision: 1122 --- diff --git a/libarchive/archive_write_set_format_zip.c b/libarchive/archive_write_set_format_zip.c index b0f864963..501cb2cd5 100644 --- a/libarchive/archive_write_set_format_zip.c +++ b/libarchive/archive_write_set_format_zip.c @@ -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;