aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-07-08 18:21:45 +0200
committerKim Alvefur <zash@zash.se>2017-07-08 18:21:45 +0200
commit6f2c8d8664cd341b7845d726be6a1cd0e0305ef8 (patch)
tree3aaca1c233f71c9abe816975c1608e73a7e5ace4
parentaf87a0a196774b3bf6b7dccf0b82069a4ae04d3d (diff)
downloadprosody-6f2c8d8664cd341b7845d726be6a1cd0e0305ef8.tar.gz
prosody-6f2c8d8664cd341b7845d726be6a1cd0e0305ef8.zip
mod_saslauth: Use correct varible name (thanks Roi)
-rw-r--r--plugins/mod_saslauth.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_saslauth.lua b/plugins/mod_saslauth.lua
index d374633e..a23d1f53 100644
--- a/plugins/mod_saslauth.lua
+++ b/plugins/mod_saslauth.lua
@@ -105,7 +105,7 @@ module:hook_stanza(xmlns_sasl, "failure", function (session, stanza)
end
end
if text and condition then
- condition = connection .. ": " .. text;
+ condition = condition .. ": " .. text;
end
module:log("info", "SASL EXTERNAL with %s failed: %s", session.to_host, condition);