X-Git-Url: https://git.enpas.org/?a=blobdiff_plain;f=prosody;h=7bc075d746a0de6890f12507a8aaa76fb9ea1b3c;hb=6a6712b24e5f780549692190e0819e2d2622faa8;hp=fdfee2b439f51b99380202facb6a4ab2c0caef53;hpb=08447dcdc8945f0db6d7436378e766cc792d8ea5;p=prosody.git diff --git a/prosody b/prosody index fdfee2b4..7bc075d7 100755 --- a/prosody +++ b/prosody @@ -163,23 +163,6 @@ function init_global_state() prosody.paths = { source = CFG_SOURCEDIR, config = CFG_CONFIGDIR, plugins = CFG_PLUGINDIR, data = CFG_DATADIR }; - local path_sep = package.config:sub(1,1); - local rel_path_start = ".."..path_sep; - function prosody.resolve_relative_path(parent_path, path) - if path then - local is_relative; - if path_sep == "/" and path:sub(1,1) ~= "/" then - is_relative = true; - elseif path_sep == "\\" and (path:sub(1,1) ~= "/" and path:sub(2,3) ~= ":\\") then - is_relative = true; - end - if is_relative then - return parent_path..path_sep..path; - end - end - return path; - end - prosody.arg = _G.arg; prosody.platform = "unknown";