From d5a775f5271e214273b7a2888a3a755040c6b50a Mon Sep 17 00:00:00 2001 From: naruse Date: Sun, 29 May 2011 14:14:38 +0000 Subject: [PATCH] * lib/webrick/https.rb (WEBrick::HTTPRequest#parse_uri): keep parse_uri as private. patched by okkez. [Bug #4773] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31780 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ lib/webrick/https.rb | 1 + 2 files changed, 6 insertions(+) diff --git a/ChangeLog b/ChangeLog index 2e848b7d4f664a..e29dea769d96d1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Sun May 29 23:10:42 2011 NARUSE, Yui + + * lib/webrick/https.rb (WEBrick::HTTPRequest#parse_uri): + keep parse_uri as private. patched by okkez. [Bug #4773] + Sun May 29 17:53:03 2011 CHIKANAGA Tomoyuki * numeric.c: add #include "interna.h" for rb_big_uminus() prototype. diff --git a/lib/webrick/https.rb b/lib/webrick/https.rb index dd9d178618bf7f..abb428451f2eef 100644 --- a/lib/webrick/https.rb +++ b/lib/webrick/https.rb @@ -38,6 +38,7 @@ def parse_uri(str, scheme="https") end return orig_parse_uri(str) end + private :parse_uri alias orig_meta_vars meta_vars