diff options
author | Matthew Wild <mwild1@gmail.com> | 2013-12-13 12:52:39 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2013-12-13 12:52:39 +0000 |
commit | 80c1a2634a90d0394188f8fa9a58caa112fcc30b (patch) | |
tree | 9392b528d10dfc77dde0fb76e4335b1b80e17491 /prosody | |
parent | 33ea9b5ab750619bac0431e71e5d636ce463fe0c (diff) | |
parent | adc2d4f169267b619ab6224ddf198f3437bac21a (diff) | |
download | prosody-80c1a2634a90d0394188f8fa9a58caa112fcc30b.tar.gz prosody-80c1a2634a90d0394188f8fa9a58caa112fcc30b.zip |
Merge 0.9->0.10
Diffstat (limited to 'prosody')
-rwxr-xr-x | prosody | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -86,6 +86,7 @@ function read_config() break; end end + prosody.config_file = filename local ok, level, err = config.load(filename); if not ok then print("\n"); @@ -240,7 +241,7 @@ function init_global_state() function prosody.reload_config() log("info", "Reloading configuration file"); prosody.events.fire_event("reloading-config"); - local ok, level, err = config.load((rawget(_G, "CFG_CONFIGDIR") or ".").."/prosody.cfg.lua"); + local ok, level, err = config.load(prosody.config_file); if not ok then if level == "parser" then log("error", "There was an error parsing the configuration file: %s", tostring(err)); |