diff options
author | ocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-08-30 04:32:50 +0000 |
---|---|---|
committer | ocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-08-30 04:32:50 +0000 |
commit | 0bbbb77d1a50c758812e3ef9a82ebc6fed390cac () | |
tree | 7294297e19312ce7e47df2b4dfc46425ff1f57ff /lib/drb/ssl.rb | |
parent | fbf6744823238944d02265332c3eeabeaa4da0fb (diff) |
* lib/drb/ssl.rb (SSLConfig#accept) fixed "Undefined method verbose"
[ruby-Bugs:1701] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9045 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | lib/drb/ssl.rb | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -180,7 +180,7 @@ module DRb ssl = @config.accept(soc) self.class.new(uri, ssl, @config, true) rescue OpenSSL::SSL::SSLError - warn("#{__FILE__}:#{__LINE__}: warning: #{$!.message} (#{$!.class})") if verbose retry end end |