diff options
author | Waqas Hussain <waqas20@gmail.com> | 2012-09-12 23:46:10 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2012-09-12 23:46:10 +0500 |
commit | aff71e544ec119a81412f2b583c4de5fbe532fb5 (patch) | |
tree | 1b62712145e90a7f2188c78b0540c5a585c7f442 /plugins/mod_storage_internal.lua | |
parent | 7daf3c7c14d6aa8adb83c80a23a64ad356aecb08 (diff) | |
download | prosody-aff71e544ec119a81412f2b583c4de5fbe532fb5.tar.gz prosody-aff71e544ec119a81412f2b583c4de5fbe532fb5.zip |
mod_storage_*: Don't explicitly set driver name, to ease copying/renaming modules.
Diffstat (limited to 'plugins/mod_storage_internal.lua')
-rw-r--r-- | plugins/mod_storage_internal.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_storage_internal.lua b/plugins/mod_storage_internal.lua index b72f08e6..75f6ec4e 100644 --- a/plugins/mod_storage_internal.lua +++ b/plugins/mod_storage_internal.lua @@ -2,7 +2,7 @@ local datamanager = require "core.storagemanager".olddm; local host = module.host; -local driver = { name = "internal" }; +local driver = {}; local driver_mt = { __index = driver }; function driver:open(store) |