summaryrefslogtreecommitdiff
path: root/lang/ruby18-base/patches/patch-ea
diff options
context:
space:
mode:
Diffstat (limited to 'lang/ruby18-base/patches/patch-ea')
-rw-r--r--lang/ruby18-base/patches/patch-ea16
1 files changed, 0 insertions, 16 deletions
diff --git a/lang/ruby18-base/patches/patch-ea b/lang/ruby18-base/patches/patch-ea
deleted file mode 100644
index 4258bf4997f..00000000000
--- a/lang/ruby18-base/patches/patch-ea
+++ /dev/null
@@ -1,16 +0,0 @@
-$NetBSD: patch-ea,v 1.1 2010/08/16 07:08:13 taca Exp $
-
-* Fix for possible cross-site scripting (CVE-2010-0541) from r29002 in
- Ruby's repository.
-
---- lib/webrick/httpresponse.rb.orig 2008-06-06 08:05:24.000000000 +0000
-+++ lib/webrick/httpresponse.rb
-@@ -209,7 +209,7 @@ module WEBrick
- @keep_alive = false
- self.status = HTTPStatus::RC_INTERNAL_SERVER_ERROR
- end
-- @header['content-type'] = "text/html"
-+ @header['content-type'] = "text/html; charset=ISO-8859-1"
-
- if respond_to?(:create_error_page)
- create_error_page()