1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/net/http.rb (send_request_with_body): #content_type never return false, use #main_type instead. [ruby-core:07476]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10027 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
aamine 2006-03-05 09:35:32 +00:00
parent ec6122bc2a
commit 6307996966
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
Sun Mar 5 18:35:03 2006 Minero Aoki <aamine@loveruby.net>
* lib/net/http.rb (send_request_with_body): #content_type never
return false, use #main_type instead. [ruby-core:07476]
Sat Mar 4 15:26:40 2006 Tanaka Akira <akr@m17n.org>
* gc.c (id2ref): fix symbol test.

View file

@ -1176,7 +1176,7 @@ module Net #:nodoc:
#
def add_field(key, val)
if @header.key?(key.downcase)
@header[key.downcase].concat [val]
@header[key.downcase].push val
else
@header[key.downcase] = [val]
end
@ -1504,7 +1504,7 @@ module Net #:nodoc:
def send_request_with_body(sock, ver, path, body)
self.content_length = body.length
delete 'Transfer-Encoding'
unless content_type()
unless main_type()
warn 'net/http: warning: Content-Type did not set; using application/x-www-form-urlencoded' if $VERBOSE
set_content_type 'application/x-www-form-urlencoded'
end