From ea4b9c83810976235d3486d42e22ec8cf279abf1 Mon Sep 17 00:00:00 2001 From: luke Date: Thu, 21 Sep 2006 17:06:34 +0000 Subject: Fixing #285, opened by ericb. The problem here was that I was not escaping URIs throughout the chain, which I am now doing. git-svn-id: https://reductivelabs.com/svn/puppet/trunk@1642 980ebf18-57e1-0310-9a29-db15c13687c0 --- lib/puppet/server/fileserver.rb | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib/puppet/server') diff --git a/lib/puppet/server/fileserver.rb b/lib/puppet/server/fileserver.rb index cb32212c9..85f0f5016 100755 --- a/lib/puppet/server/fileserver.rb +++ b/lib/puppet/server/fileserver.rb @@ -198,6 +198,8 @@ class Server def convert(url, client, clientip) readconfig + url = URI.unescape(url) + mount, stub = splitpath(url, client) authcheck(url, mount, client, clientip) -- cgit