diff options
author | Matthew Wild <mwild1@gmail.com> | 2015-02-20 22:53:12 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2015-02-20 22:53:12 +0000 |
commit | 33ca1a111127363489483a8edd5252c45cb16f9a (patch) | |
tree | f2376f7cc2ce8b7c5f9e943200f0e8f28a6bc7ec | |
parent | 1c33e777ecf981e5982804317b543510de318eb3 (diff) | |
download | prosody-33ca1a111127363489483a8edd5252c45cb16f9a.tar.gz prosody-33ca1a111127363489483a8edd5252c45cb16f9a.zip |
mod_admin_telnet: Require util.pposix (fixes #471)
-rw-r--r-- | plugins/mod_admin_telnet.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/mod_admin_telnet.lua b/plugins/mod_admin_telnet.lua index e4b5a045..437ded01 100644 --- a/plugins/mod_admin_telnet.lua +++ b/plugins/mod_admin_telnet.lua @@ -313,6 +313,7 @@ local function human(kb) end function def_env.server:memory() + local pposix = require("util.pposix"); if not pposix.meminfo then return true, "Lua is using "..collectgarbage("count"); end |