diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-06-10 11:18:17 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-06-10 11:18:17 -0700 |
commit | 225a6f1068f71723a910e8565db4e252b3ca21fa (patch) | |
tree | 5c7e5981d71f9ef025d1acb11b3e6350da3278b7 /remote-curl.c | |
parent | zlib: wrap deflate side of the API (diff) | |
download | tgif-225a6f1068f71723a910e8565db4e252b3ca21fa.tar.xz |
zlib: wrap deflateBound() too
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'remote-curl.c')
-rw-r--r-- | remote-curl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/remote-curl.c b/remote-curl.c index 3c7621aa06..13d8ceede3 100644 --- a/remote-curl.c +++ b/remote-curl.c @@ -476,7 +476,7 @@ static int post_rpc(struct rpc_state *rpc) memset(&stream, 0, sizeof(stream)); git_deflate_init_gzip(&stream, Z_BEST_COMPRESSION); - size = deflateBound(&stream, rpc->len); + size = git_deflate_bound(&stream, rpc->len); gzip_body = xmalloc(size); stream.next_in = (unsigned char *)rpc->buf; |