aboutsummaryrefslogtreecommitdiffstats
path: root/core/certmanager.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2010-11-10 19:46:53 +0000
committerMatthew Wild <mwild1@gmail.com>2010-11-10 19:46:53 +0000
commit385fd64606ba2c860ce5bcd534a7de5f8bce4bd1 (patch)
tree9fb2b9820d780d2807ac9b1241f802270e1e5e89 /core/certmanager.lua
parent0bcc5e0ac77e6bdc584aaaa042978f28ce1e5483 (diff)
downloadprosody-385fd64606ba2c860ce5bcd534a7de5f8bce4bd1.tar.gz
prosody-385fd64606ba2c860ce5bcd534a7de5f8bce4bd1.zip
prosody, configmanager, certmanager: Relocate prosody.resolve_relative_path() to configmanager, and update certmanager (the only user of this function)
Diffstat (limited to 'core/certmanager.lua')
-rw-r--r--core/certmanager.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/certmanager.lua b/core/certmanager.lua
index 79651242..7f1ca42e 100644
--- a/core/certmanager.lua
+++ b/core/certmanager.lua
@@ -14,7 +14,7 @@ local ssl_newcontext = ssl and ssl.newcontext;
local setmetatable, tostring = setmetatable, tostring;
local prosody = prosody;
-local resolve_path = prosody.resolve_relative_path;
+local resolve_path = configmanager.resolve_relative_path;
local config_path = prosody.paths.config;
module "certmanager"