summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-11-04 16:03:30 +0000
committeraamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-11-04 16:03:30 +0000
commit8695fc5ba159c1c8ec4c4c04f56eaf3a9a174e19 (patch)
tree940ead37327f93e4ee5af86ed3d56e382948a477
parente5ed3f059b5d9827fd3fd7709edd89e030461171 (diff)
downloadruby-8695fc5ba159c1c8ec4c4c04f56eaf3a9a174e19.tar.gz
ruby-8695fc5ba159c1c8ec4c4c04f56eaf3a9a174e19.tar.xz
ruby-8695fc5ba159c1c8ec4c4c04f56eaf3a9a174e19.zip
* lib/net/http.rb (HTTPHeader#initialize): provide default User-Agent to fix 500 error on some corrupted HTTP servers. [ruby-core:13135]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13820 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog6
-rw-r--r--lib/net/http.rb1
2 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index db47c1924..84d0e1023 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Mon Nov 5 01:02:56 2007 Minero Aoki <aamine@loveruby.net>
+
+ * lib/net/http.rb (HTTPHeader#initialize): provide default
+ User-Agent to fix 500 error on some corrupted HTTP servers.
+ [ruby-core:13135]
+
Mon Nov 5 00:24:24 2007 NAKAMURA Usaku <usa@ruby-lang.org>
* win32/Makefile.sub: vendor_ruby support.
diff --git a/lib/net/http.rb b/lib/net/http.rb
index 29377fc47..19f0983a3 100644
--- a/lib/net/http.rb
+++ b/lib/net/http.rb
@@ -1533,6 +1533,7 @@ module Net #:nodoc:
@path = path
initialize_http_header initheader
self['Accept'] ||= '*/*'
+ self['User-Agent'] ||= 'Ruby'
@body = nil
@body_stream = nil
end