summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--lib/net/http.rb2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 3088735dc0..2240236fc9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
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