summaryrefslogtreecommitdiff
path: root/lib/xmlrpc
diff options
context:
space:
mode:
Diffstat (limited to 'lib/xmlrpc')
-rw-r--r--lib/xmlrpc/server.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/xmlrpc/server.rb b/lib/xmlrpc/server.rb
index 0fabd3861e..0ef3ca4c93 100644
--- a/lib/xmlrpc/server.rb
+++ b/lib/xmlrpc/server.rb
@@ -762,7 +762,7 @@ end
end
httpserver = WEBrick::HTTPServer.new(:Port => 8080)
- httpserver.mount("RPC2", s)
+ httpserver.mount("/RPC2", s)
trap("HUP") { httpserver.shutdown } # use 1 instead of "HUP" on Windows
httpserver.start
== Description