aboutsummaryrefslogtreecommitdiffstats
path: root/lib/xmlrpc/httpserver.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/xmlrpc/httpserver.rb')
-rw-r--r--lib/xmlrpc/httpserver.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/xmlrpc/httpserver.rb b/lib/xmlrpc/httpserver.rb
index 9afb5fd5ec..020e6cbcd9 100644
--- a/lib/xmlrpc/httpserver.rb
+++ b/lib/xmlrpc/httpserver.rb
@@ -156,7 +156,7 @@ private
# parse HTTP headers
while (line=io.gets) !~ /^(\n|\r)/
if line =~ /^([\w-]+):\s*(.*)$/
- request.header[$1] = $2.strip
+ request.header[$1] = $2.strip
end
end