aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2012-08-07 17:01:07 +0200
committerKim Alvefur <zash@zash.se>2012-08-07 17:01:07 +0200
commit9735264a8dcad0f13306ad5e2997f636c92b92dd (patch)
treeed82855e76c2e5a55b68423bef12dba58c1d64d8
parentba9418cd026869de7a067bac32b9b77172ec78b2 (diff)
downloadprosody-9735264a8dcad0f13306ad5e2997f636c92b92dd.tar.gz
prosody-9735264a8dcad0f13306ad5e2997f636c92b92dd.zip
mod_legacyauth: Remove unused variable
-rw-r--r--plugins/mod_legacyauth.lua1
1 files changed, 0 insertions, 1 deletions
diff --git a/plugins/mod_legacyauth.lua b/plugins/mod_legacyauth.lua
index 7a3038bc..dcb652a0 100644
--- a/plugins/mod_legacyauth.lua
+++ b/plugins/mod_legacyauth.lua
@@ -57,7 +57,6 @@ module:hook("stanza/iq/jabber:iq:auth:query", function(event)
username, password, resource = t_concat(username), t_concat(password), t_concat(resource);
username = nodeprep(username);
resource = resourceprep(resource)
- local reply = st.reply(stanza);
if not (username and resource) then
session.send(st.error_reply(stanza, "modify", "bad-request"));
return true;