1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/net/pop.rb (POP3.certs): fix typo in comment.

patch from no6v (Nobuhiro IMAI) <nov@yo.rim.or.jp>.
  [ruby-dev:46519] [Bug #7355]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37671 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
glass 2012-11-16 06:37:06 +00:00
parent a632fe43d8
commit df03463ff2
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
Fri Nov 16 15:27:36 2012 Masaki Matsushita <glass.saga@gmail.com>
* lib/net/pop.rb (POP3.certs): fix typo in comment.
patch from no6v (Nobuhiro IMAI) <nov@yo.rim.or.jp>.
[ruby-dev:46519] [Bug #7355]
Fri Nov 16 12:36:47 2012 NARUSE, Yui <naruse@ruby-lang.org>
* test/rake/helper.rb (Rake::TestCase#setup): revert r37669.

View file

@ -375,7 +375,7 @@ module Net
return @ssl_params[:verify_mode]
end
# returns the :ca_file or :ca_path from POP3.ssh_params
# returns the :ca_file or :ca_path from POP3.ssl_params
def POP3.certs
return @ssl_params[:ca_file] || @ssl_params[:ca_path]
end