mod_storage_{none,internal,sql}: Return error for unsupported (everything but keyval) store types

This commit is contained in:
Kim Alvefur 2014-06-20 16:22:23 +02:00
parent 578ceff99e
commit 2ba9c6ce77
3 changed files with 11 additions and 5 deletions

View file

@ -380,10 +380,10 @@ end
local driver = {};
function driver:open(store, typ)
if not typ then -- default key-value store
return setmetatable({ store = store }, keyval_store);
if typ and typ ~= "keyval" then
return nil, "unsupported-store";
end
return nil, "unsupported-store";
return setmetatable({ store = store }, keyval_store);
end
function driver:stores(username)