mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/net/http.rb (HTTPHeader#proxy_basic_auth): missing `@'.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3995 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
9fa20b9973
commit
170aaabe4b
2 changed files with 6 additions and 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-"
|
||||
|
|
|
@ -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 )
|
||||
|
|
Loading…
Reference in a new issue