summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-10-21 06:56:17 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-10-21 06:56:17 +0000
commitf3fb1954eb010b73b20f1a5c04975dfbc383f237 (patch)
treeb8437a4607a163f5f431b68366e2ea899c157096
parentd835a87cc1afff63764b2b952cd397190c8623ab (diff)
* lib/webrick/httpauth/digestauth.rb
(WEBrick::HTTPAuth::ProxyDigestAuth#check_uri): privated. [ruby-dev:42344] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29546 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog6
-rw-r--r--lib/webrick/httpauth/digestauth.rb1
2 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 7b7fe1b4ca..ed54c9434c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Thu Oct 21 15:55:21 2010 NARUSE, Yui <naruse@ruby-lang.org>
+
+ * lib/webrick/httpauth/digestauth.rb
+ (WEBrick::HTTPAuth::ProxyDigestAuth#check_uri): privated.
+ [ruby-dev:42344]
+
Thu Oct 21 15:50:25 2010 NARUSE, Yui <naruse@ruby-lang.org>
* io.c (rb_f_select): add correct rdoc.
diff --git a/lib/webrick/httpauth/digestauth.rb b/lib/webrick/httpauth/digestauth.rb
index 3bae6f65e5..4e62678b3f 100644
--- a/lib/webrick/httpauth/digestauth.rb
+++ b/lib/webrick/httpauth/digestauth.rb
@@ -384,6 +384,7 @@ module WEBrick
class ProxyDigestAuth < DigestAuth
include ProxyAuthenticator
+ private
def check_uri(req, auth_req)
return true
end