summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-08-09 06:57:52 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-08-09 06:57:52 +0000
commit5ee60048088ec5e6dbe1aa558cefa24a488b495c (patch)
tree5086ce8e05862a9d7559c0bb75da1ef940a90b3a /lib
parente6716b5e38003a595254abbf92757e5a98cf287a (diff)
* lib/net/http.rb (Net::HTTP#send_request_with_body_stream): use
String#bytesize instead of String#length. reported by shekhei (shek hei wong) at [ruby-core:53775] [Backport #8176]. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_3@42461 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/net/http.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/net/http.rb b/lib/net/http.rb
index 9e4fe6a120..67de15cd27 100644
--- a/lib/net/http.rb
+++ b/lib/net/http.rb
@@ -1948,7 +1948,7 @@ module Net #:nodoc:
wait_for_continue sock, ver if sock.continue_timeout
if chunked?
while s = f.read(1024)
- sock.write(sprintf("%x\r\n", s.length) << s << "\r\n")
+ sock.write(sprintf("%x\r\n", s.bytesize) << s << "\r\n")
end
sock.write "0\r\n\r\n"
else