diff options
author | Matthew Wild <mwild1@gmail.com> | 2009-12-01 20:07:07 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2009-12-01 20:07:07 +0000 |
commit | 85332f04e0420729ca1402d2db639027e0bef7e7 (patch) | |
tree | 54f8438970b7f5dcb1e3deba767f7e37214fdfe9 | |
parent | 40bfbc64b5b0a1b6ea81e58ea8136f1549fcac6a (diff) | |
download | prosody-85332f04e0420729ca1402d2db639027e0bef7e7.tar.gz prosody-85332f04e0420729ca1402d2db639027e0bef7e7.zip |
mod_proxy65: Fix log:module -> module:log :)
-rw-r--r-- | plugins/mod_proxy65.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_proxy65.lua b/plugins/mod_proxy65.lua index 504cfc0c..e2cf3cd8 100644 --- a/plugins/mod_proxy65.lua +++ b/plugins/mod_proxy65.lua @@ -83,7 +83,7 @@ function connlistener.onincoming(conn, data) end conn:write(string.char(5, 0, 0, 3, sha:len()) .. sha .. string.char(0, 0)); -- VER, REP, RSV, ATYP, BND.ADDR (sha), BND.PORT (2 Byte) else - log:module("warn", "Neither data transfer nor initial connect of a participator of a transfer.") + module:log("warn", "Neither data transfer nor initial connect of a participator of a transfer.") conn.close(); end else |