diff options
author | aamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-06-24 07:42:46 +0000 |
---|---|---|
committer | aamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-06-24 07:42:46 +0000 |
commit | 1b66e88cca2a932cd787c4bf0665516b33fd303c (patch) | |
tree | d47be35932ef5bc6ede764b57938dafc0c9226ed | |
parent | 02b5eb5384327a9d7b2fd19eac0ac1d5c41ea4ab (diff) | |
download | ruby-1b66e88cca2a932cd787c4bf0665516b33fd303c.tar.gz ruby-1b66e88cca2a932cd787c4bf0665516b33fd303c.tar.xz ruby-1b66e88cca2a932cd787c4bf0665516b33fd303c.zip |
* lib/net/http.rb (HTTPHeader#proxy_basic_auth): missing `@'.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3995 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | lib/net/http.rb | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Tue Jun 24 16:47:07 2003 Minero Aoki <aamine@loveruby.net> + + * lib/net/http.rb (HTTPHeader#proxy_basic_auth): missing `@'. + Thanks Douglas Koszerek. (ruby-bugs:PR975) + Tue Jun 24 14:31:17 2003 Minero Aoki <aamine@loveruby.net> * config.guess: have wrongly returned "alphaev56-unknown-linux-" diff --git a/lib/net/http.rb b/lib/net/http.rb index b7054464b..65424bd61 100644 --- a/lib/net/http.rb +++ b/lib/net/http.rb @@ -1152,7 +1152,7 @@ module Net end def proxy_basic_auth( account, password ) - header['proxy-authorization'] = basic_encode(account, password) + @header['proxy-authorization'] = basic_encode(account, password) end def basic_encode( account, password ) |