aboutsummaryrefslogtreecommitdiffstats
path: root/core/storagemanager.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2012-04-28 03:25:40 +0100
committerMatthew Wild <mwild1@gmail.com>2012-04-28 03:25:40 +0100
commit158675928e0fe7e40f18cfc27535cded124ec6be (patch)
treef1eeb21ecf3d29b34065d85437ff57cd57088fda /core/storagemanager.lua
parent844026b0eaa192cc595a5f4a909259b158fc898e (diff)
downloadprosody-158675928e0fe7e40f18cfc27535cded124ec6be.tar.gz
prosody-158675928e0fe7e40f18cfc27535cded124ec6be.zip
storagemanager: Fix incorrect variable name
Diffstat (limited to 'core/storagemanager.lua')
-rw-r--r--core/storagemanager.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/storagemanager.lua b/core/storagemanager.lua
index c96ef3ec..71e79271 100644
--- a/core/storagemanager.lua
+++ b/core/storagemanager.lua
@@ -47,7 +47,7 @@ prosody.events.add_handler("host-activated", initialize_host, 101);
function load_driver(host, driver_name)
if driver_name == "null" then
- return null_storage_provider;
+ return null_storage_driver;
end
local driver = stores_available:get(host, driver_name);
if driver then return driver; end