diff options
author | Waqas Hussain <waqas20@gmail.com> | 2008-11-30 06:14:41 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2008-11-30 06:14:41 +0500 |
commit | 1f61290ffd69e4b7e1d953f43fcbbf2f4586ada6 (patch) | |
tree | 74e175c80a74d50cce61281f489dab87fb219ffb /prosody | |
parent | 5595358cb096a37c8f235f751e7dfbd8d5b4c6df (diff) | |
download | prosody-1f61290ffd69e4b7e1d953f43fcbbf2f4586ada6.tar.gz prosody-1f61290ffd69e4b7e1d953f43fcbbf2f4586ada6.zip |
Path fix for auto-creating directories
Diffstat (limited to 'prosody')
-rwxr-xr-x | prosody | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -94,7 +94,7 @@ local defined_hosts = config.getconfig(); for host, host_config in pairs(defined_hosts) do if host ~= "*" and (host_config.core.enabled == nil or host_config.core.enabled) then hosts[host] = {type = "local", connected = true, sessions = {}, host = host, s2sout = {} }; - mkdirs(data_path.."/"..host); + mkdirs(host); end end |