prosody

changeset 3402
dfc369314e53
parent 3354
b4ebda3fd6e9
child 3413
7d34bcbf104c
--- a/prosody	Fri Jul 23 23:09:58 2010 +0500
+++ b/prosody	Fri Jul 23 23:14:50 2010 +0500
@@ -165,7 +165,7 @@
 	
 	local path_sep = package.config:sub(1,1);
 	local rel_path_start = ".."..path_sep;
-	function prosody.resolve_relative_path(path)
+	function prosody.resolve_relative_path(parent_path, path)
 		if path then
 			local is_relative;
 			if path_sep == "/" and path:sub(1,1) ~= "/" then
@@ -174,7 +174,7 @@
 				is_relative = true;
 			end
 			if is_relative then
-				return CFG_CONFIGDIR..path_sep..path;
+				return parent_path..path_sep..path;
 			end
 		end
 		return path;

mercurial