Diff

plugins/mod_storage_internal.lua @ 6283:7cf6d3a2c855

mod_storage_{none,internal,sql}: Return error for unsupported (everything but keyval) store types
author Kim Alvefur <zash@zash.se>
date Fri, 20 Jun 2014 16:22:23 +0200
parent 5153:688aeac0012a
child 8018:9545d0a9401f
line wrap: on
line diff
--- a/plugins/mod_storage_internal.lua	Fri Jun 20 16:16:33 2014 +0200
+++ b/plugins/mod_storage_internal.lua	Fri Jun 20 16:22:23 2014 +0200
@@ -6,6 +6,9 @@
 local driver_mt = { __index = driver };
 
 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)