diff options
author | Matthew Wild <mwild1@gmail.com> | 2009-12-04 14:41:53 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2009-12-04 14:41:53 +0000 |
commit | 3b8737814d5de1e6ff97dd8b1bd5947c88e20be2 (patch) | |
tree | 55518baaeba44c4bedb9aa5a1e5c43f7faf25b64 | |
parent | eb081323349ee495b27b746765267fd86aef9f15 (diff) | |
download | prosody-3b8737814d5de1e6ff97dd8b1bd5947c88e20be2.tar.gz prosody-3b8737814d5de1e6ff97dd8b1bd5947c88e20be2.zip |
mod_proxy65: Strip trailing whitespace
-rw-r--r-- | plugins/mod_proxy65.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/mod_proxy65.lua b/plugins/mod_proxy65.lua index af618c01..2cfbe7b6 100644 --- a/plugins/mod_proxy65.lua +++ b/plugins/mod_proxy65.lua @@ -84,8 +84,8 @@ function connlistener.onincoming(conn, data) transfers[sha].initiator = conn; session.sha = sha; module:log("debug", "initiator connected ... "); - throttle_sending(conn, transfers[sha].target); - throttle_sending(transfers[sha].target, conn); + throttle_sending(conn, transfers[sha].target); + throttle_sending(transfers[sha].target, conn); 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) conn:lock_read(true) |