aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_saslauth.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2014-07-04 22:52:34 +0200
committerKim Alvefur <zash@zash.se>2014-07-04 22:52:34 +0200
commit8003a40b0a3895399912c5042e6e8af41c61eb04 (patch)
tree4ee710468ebed7a73d392f011b38e251640508f9 /plugins/mod_saslauth.lua
parent1440be730c44897aa5f1aed4cf7d7f87e4489334 (diff)
downloadprosody-8003a40b0a3895399912c5042e6e8af41c61eb04.tar.gz
prosody-8003a40b0a3895399912c5042e6e8af41c61eb04.zip
mod_lastactivity, mod_legacyauth, mod_presence, mod_saslauth, mod_tls: Use the newer stanza:get_child APIs and optimize away some table lookups
Diffstat (limited to 'plugins/mod_saslauth.lua')
-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 df60aefa..a07c5fd2 100644
--- a/plugins/mod_saslauth.lua
+++ b/plugins/mod_saslauth.lua
@@ -284,7 +284,7 @@ module:hook("iq/self/urn:ietf:params:xml:ns:xmpp-bind:bind", function(event)
local resource;
if stanza.attr.type == "set" then
local bind = stanza.tags[1];
- resource = bind:child_with_name("resource");
+ resource = bind:get_child("resource");
resource = resource and #resource.tags == 0 and resource[1] or nil;
end
local success, err_type, err, err_msg = sm_bind_resource(origin, resource);