jani Wed, 09 Dec 2009 14:06:18 +0000 Revision: http://svn.php.net/viewvc?view=revision&revision=291920
Log: - Rename badly named function Changed paths: U php/php-src/trunk/ext/zlib/zlib.c Modified: php/php-src/trunk/ext/zlib/zlib.c =================================================================== --- php/php-src/trunk/ext/zlib/zlib.c 2009-12-09 13:54:37 UTC (rev 291919) +++ php/php-src/trunk/ext/zlib/zlib.c 2009-12-09 14:06:18 UTC (rev 291920) @@ -312,8 +312,8 @@ } /* }}} */ -/* {{{ inflate_rounds() */ -static inline int inflate_rounds(z_stream *Z, size_t max, char **buf, size_t *len) +/* {{{ php_zlib_inflate_rounds() */ +static inline int php_zlib_inflate_rounds(z_stream *Z, size_t max, char **buf, size_t *len) { int status, round = 0; php_zlib_buffer buffer = {NULL, NULL, 0, 0, 0}; @@ -374,7 +374,7 @@ Z.next_in = (Bytef *) in_buf; Z.avail_in = in_len; - switch (status = inflate_rounds(&Z, max_len, out_buf, out_len)) { + switch (status = php_zlib_inflate_rounds(&Z, max_len, out_buf, out_len)) { case Z_OK: case Z_STREAM_END: inflateEnd(&Z);
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php