diff plugins/mod_storage_sql.lua @ 6285:ea60d0441df7

Merge 0.10->trunk
author Kim Alvefur <zash@zash.se>
date Sat, 21 Jun 2014 15:05:52 +0200
parents 7cf6d3a2c855
children 99de8f30d99e
line wrap: on
line diff
--- a/plugins/mod_storage_sql.lua	Tue Jun 17 15:27:00 2014 -0400
+++ b/plugins/mod_storage_sql.lua	Sat Jun 21 15:05:52 2014 +0200
@@ -380,10 +380,10 @@
 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)