ruby-changes:21806
From: naruse <ko1@a...>
Date: Sun, 27 Nov 2011 05:03:42 +0900 (JST)
Subject: [ruby-changes:21806] naruse:r33855 (trunk): Fix typo in r33849.
naruse 2011-11-27 05:03:32 +0900 (Sun, 27 Nov 2011) New Revision: 33855 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=33855 Log: Fix typo in r33849. Modified files: trunk/lib/net/http.rb Index: lib/net/http.rb =================================================================== --- lib/net/http.rb (revision 33854) +++ lib/net/http.rb (revision 33855) @@ -481,7 +481,7 @@ req.form_data = params req.basic_auth url.user, url.password if url.user start(url.hostname, url.port, - :use_ssl => uri.scheme == 'https' ) {|http| + :use_ssl => url.scheme == 'https' ) {|http| http.request(req) } end -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/