# HG changeset patch # User Waqas Hussain # Date 1228007681 -18000 # Node ID 6468ea15429642f9ed8cee107eea35811a34bae7 # Parent 29f165027f07e8fb856fc0702b1573268a6a8edf Path fix for auto-creating directories diff -r 29f165027f07 -r 6468ea154296 prosody --- a/prosody Sun Nov 30 01:02:12 2008 +0000 +++ b/prosody Sun Nov 30 06:14:41 2008 +0500 @@ -94,7 +94,7 @@ 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