diff options
author | Jani Taskinen <jani@php.net> | 2009-12-09 14:06:18 +0000 |
---|---|---|
committer | Jani Taskinen <jani@php.net> | 2009-12-09 14:06:18 +0000 |
commit | 617398b51dfa02e9749c0158db150db2036cd817 (patch) | |
tree | 8058800ee0835e3297cbedf3146a287fa9a8fa8c /ext/zlib/zlib.c | |
parent | e76b3982f8d867d0edd7b8d544b2eccd590afde2 (diff) | |
download | php-git-617398b51dfa02e9749c0158db150db2036cd817.tar.gz |
- Rename badly named function
Diffstat (limited to 'ext/zlib/zlib.c')
-rw-r--r-- | ext/zlib/zlib.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/zlib/zlib.c b/ext/zlib/zlib.c index 332826a8a7..039577bac1 100644 --- a/ext/zlib/zlib.c +++ b/ext/zlib/zlib.c @@ -312,8 +312,8 @@ static int php_zlib_encode(const char *in_buf, size_t in_len, char **out_buf, si } /* }}} */ -/* {{{ 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 @@ retry_raw_inflate: 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); |