Merge 0.10->trunk
[prosody.git] / plugins / mod_storage_none.lua
index 8f2d2f5602fcb68734ba978044365c356eb9703d..fa925b7616281e8dcc769b18621adce96650a5e0 100644 (file)
@@ -1,8 +1,11 @@
 local driver = {};
 local driver_mt = { __index = driver };
 
-function driver:open(store)
-       return setmetatable({ store = store }, driver_mt);
+function driver:open(store, typ)
+       if typ and typ ~= "keyval" then
+               return nil, "unsupported-store";
+       end
+       return setmetatable({ store = store, type = typ }, driver_mt);
 end
 function driver:get(user)
        return {};