From 7fda99a3596a789ef6e10bfd8629b4378c7b975a Mon Sep 17 00:00:00 2001 From: ocean Date: Tue, 30 Aug 2005 04:32:50 +0000 Subject: * lib/drb/ssl.rb (SSLConfig#accept) fixed "Undefined method verbose" [ruby-Bugs:1701] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9045 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/drb/ssl.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/drb/ssl.rb b/lib/drb/ssl.rb index a35be03dd..aebdceed4 100644 --- a/lib/drb/ssl.rb +++ b/lib/drb/ssl.rb @@ -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 + warn("#{__FILE__}:#{__LINE__}: warning: #{$!.message} (#{$!.class})") if self[:verbose] retry end end -- cgit