configmanager: Fix so unset variables are searched for in the global section

This commit is contained in:
Kim Alvefur 2013-03-23 04:14:52 +01:00
parent 613c9b00c4
commit 869da6c240

View file

@ -25,7 +25,7 @@ local config_mt = { __index = function (t, k) return rawget(t, "*"); end};
local config = setmetatable({ ["*"] = { } }, config_mt);
-- When host not found, use global
local host_mt = { };
local host_mt = { __index = function(_, k) return config["*"][k] end }
function getconfig()
return config;