From 718ab93d4df1f655abf5f5724f59fd91762b79f1 Mon Sep 17 00:00:00 2001 From: drbrain Date: Tue, 10 Apr 2012 00:48:49 +0000 Subject: * ext/zlib/zlib.c (rb_deflate_s_deflate): Fixed ruby example replacing NO_FLUSH with FINISH. [ruby-trunk - Bug #6273] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35273 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ ext/zlib/zlib.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index b76ee58d85..c90a2c74c2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Tue Apr 10 09:48:31 2012 Eric Hodel + + * ext/zlib/zlib.c (rb_deflate_s_deflate): Fixed ruby example replacing + NO_FLUSH with FINISH. [ruby-trunk - Bug #6273] + Mon Apr 9 23:10:26 2012 Nobuyoshi Nakada * win32/win32.c (isUNCRoot, winnt_stat): support long UNC. diff --git a/ext/zlib/zlib.c b/ext/zlib/zlib.c index 56a6acc289..d8cbe2fd65 100644 --- a/ext/zlib/zlib.c +++ b/ext/zlib/zlib.c @@ -1434,7 +1434,7 @@ deflate_run(VALUE args) * * def deflate(string, level) * z = Zlib::Deflate.new(level) - * dst = z.deflate(string, Zlib::NO_FLUSH) + * dst = z.deflate(string, Zlib::FINISH) * z.close * dst * end -- cgit v1.2.3