Skip to content

Commit

Permalink
* lib/drb/ssl.rb (SSLConfig#accept) fixed "Undefined method verbose"
Browse files Browse the repository at this point in the history
  [ruby-Bugs:1701]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9045 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
ocean committed Aug 30, 2005
1 parent fbf6744 commit 0bbbb77
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Tue Aug 30 13:28:17 2005 Hirokazu Yamamoto <[email protected]>

* lib/drb/ssl.rb (SSLConfig#accept) fixed "Undefined method verbose"
[ruby-Bugs:1701]

Tue Aug 30 12:45:15 2005 Yukihiro Matsumoto <[email protected]>

* eval.c (rb_f_send): do not call private methods if the receiver
Expand Down
2 changes: 1 addition & 1 deletion lib/drb/ssl.rb
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ def accept
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
Expand Down

0 comments on commit 0bbbb77

Please sign in to comment.