diff options
author | Waqas Hussain <waqas20@gmail.com> | 2011-09-21 03:25:34 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2011-09-21 03:25:34 +0500 |
commit | bdcd8a000afad204d872233d6045ae1b2efe56ad (patch) | |
tree | 68d9e1a068a08f2fdc8892158bd99d747c8d9960 | |
parent | 3c72dc07e5ee7d9cf7c90b8744cc9daa3984a414 (diff) | |
download | prosody-bdcd8a000afad204d872233d6045ae1b2efe56ad.tar.gz prosody-bdcd8a000afad204d872233d6045ae1b2efe56ad.zip |
modulemanager: Fix undefined global access in handling of module.save error handling.
-rw-r--r-- | core/modulemanager.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/modulemanager.lua b/core/modulemanager.lua index 8d4d5633..2d1eeb77 100644 --- a/core/modulemanager.lua +++ b/core/modulemanager.lua @@ -215,7 +215,7 @@ function reload(host, name, ...) if ok then saved = ret; else - log("warn", "Error saving module '%s:%s' state: %s", host, module, ret); + log("warn", "Error saving module '%s:%s' state: %s", host, name, ret); if not config.get(host, "core", "force_module_reload") then log("warn", "Aborting reload due to error, set force_module_reload to ignore this"); return nil, "save-state-failed"; |