From 00b129c4e41bf017e0fec3b43ba684f3fa303f7e Mon Sep 17 00:00:00 2001 From: aamine Date: Tue, 12 Aug 2008 06:32:50 +0000 Subject: * 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 --- lib/net/http.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/net') diff --git a/lib/net/http.rb b/lib/net/http.rb index c19064bf6d..b3ddee54e0 100644 --- a/lib/net/http.rb +++ b/lib/net/http.rb @@ -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 -- cgit v1.2.3