From 3c15e9efe3d7951612f6915900b6870f1b4b50db Mon Sep 17 00:00:00 2001 From: jeg2 Date: Wed, 24 Oct 2007 18:46:08 +0000 Subject: [PATCH] * lib/xmlrpc/utils.rb (XMLRPC::ParseContentType#parse_content_type): Making Content-Type checks case insensitive. [ruby-Bugs-3367] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13767 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ lib/xmlrpc/utils.rb | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 9b2727538c..be8433481c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Wed Oct 25 03:45:08 2007 James Edward Gray II + + * lib/xmlrpc/utils.rb (XMLRPC::ParseContentType#parse_content_type): + Making Content-Type checks case insensitive. [ruby-Bugs-3367] + Wed Oct 24 17:09:39 2007 Nobuyoshi Nakada * parse.y (parser_tokspace): make space in token buffer. diff --git a/lib/xmlrpc/utils.rb b/lib/xmlrpc/utils.rb index 85c6bba372..f0966fee40 100644 --- a/lib/xmlrpc/utils.rb +++ b/lib/xmlrpc/utils.rb @@ -157,7 +157,7 @@ module XMLRPC module ParseContentType def parse_content_type(str) a, *b = str.split(";") - return a.strip, *b + return a.strip.downcase, *b end end