summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authornobu <nobu@ruby-lang.org>2013-11-22 03:17:16 +0000
committernobu <nobu@ruby-lang.org>2013-11-22 03:17:16 +0000
commit4bcfd56492a9da8cfaf3ec43d53d155b3936f66c (patch)
tree487a60763934952ff77ba0791600d0a1eb6e6aba /lib
parentd04ba16a2beaed5d2748982c46ca072802187fda (diff)
downloadruby-openssl-history-4bcfd56492a9da8cfaf3ec43d53d155b3936f66c.tar.gz
openssl/buffering.rb: call super
* ext/openssl/lib/openssl/buffering.rb (OpenSSL::Buffering#initialize): initialize of a module should pass arguments to super. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43774 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/openssl/buffering.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/openssl/buffering.rb b/lib/openssl/buffering.rb
index 0ccbf0f..85cf8af 100644
--- a/lib/openssl/buffering.rb
+++ b/lib/openssl/buffering.rb
@@ -40,7 +40,8 @@ module OpenSSL::Buffering
##
# Creates an instance of OpenSSL's buffering IO module.
- def initialize
+ def initialize(*)
+ super
@eof = false
@rbuffer = ""
@sync = @io.sync