diff options
author | Matthew Wild <mwild1@gmail.com> | 2010-12-21 22:25:54 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2010-12-21 22:25:54 +0000 |
commit | 519b72e6e989a18ede51fddddfa87f20a32ea29e (patch) | |
tree | c2a123c600d5c5b187f392577abe83ec97b0abed /core/configmanager.lua | |
parent | 5837f7565673ec5933bb4f528ee3289ea05d0744 (diff) | |
download | prosody-519b72e6e989a18ede51fddddfa87f20a32ea29e.tar.gz prosody-519b72e6e989a18ede51fddddfa87f20a32ea29e.zip |
configmanager: Filenames without a path are also relative to the config file path, not the current working directory
Diffstat (limited to 'core/configmanager.lua')
-rw-r--r-- | core/configmanager.lua | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/core/configmanager.lua b/core/configmanager.lua index 839927df..b703bb8c 100644 --- a/core/configmanager.lua +++ b/core/configmanager.lua @@ -221,10 +221,11 @@ do if file:match("[*?]") then local path_pos, glob = file:match("()([^"..path_sep.."]+)$"); local path = file:sub(1, math_max(path_pos-2,0)); + local config_path = config_file:gsub("[^"..path_sep.."]+$", ""); if #path > 0 then - path = resolve_relative_path(config_file:gsub("[^"..path_sep.."]+$", ""), path); + path = resolve_relative_path(config_path, path); else - path = "."; + path = config_path; end local patt = glob_to_pattern(glob); for f in lfs.dir(path) do |