зеркало из https://github.com/github/ruby.git
* lib/net/http.rb (send_request_with_body): Content-Length should be byte length of string. (closes #203)
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18518 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
6d8c1483d6
Коммит
00b129c4e4
|
@ -1,3 +1,8 @@
|
|||
Tue Aug 12 15:31:04 2008 Minero Aoki <aamine@loveruby.net>
|
||||
|
||||
* lib/net/http.rb (send_request_with_body): Content-Length should
|
||||
be byte length of string. (closes #203)
|
||||
|
||||
Tue Aug 12 15:17:06 2008 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||
|
||||
* enc/depend: (transvpath_prefix): prefix has no extension, so replace
|
||||
|
|
|
@ -1648,7 +1648,7 @@ module Net #:nodoc:
|
|||
private
|
||||
|
||||
def send_request_with_body(sock, ver, path, body)
|
||||
self.content_length = body.length
|
||||
self.content_length = body.bytesize
|
||||
delete 'Transfer-Encoding'
|
||||
supply_default_content_type
|
||||
write_header sock, ver, path
|
||||
|
|
Загрузка…
Ссылка в новой задаче