# HG changeset patch # User Matthew Wild # Date 1661791276 -3600 # Node ID 8b9ab351dd78344b783566956bc35468763ef188 # Parent e3248d025d3448ff2475ce9d582546b1092d7233 mod_sasl2_sm: Use a stanza method that actually exists diff -r e3248d025d34 -r 8b9ab351dd78 mod_sasl2_sm/mod_sasl2_sm.lua --- a/mod_sasl2_sm/mod_sasl2_sm.lua Mon Aug 29 17:12:16 2022 +0100 +++ b/mod_sasl2_sm/mod_sasl2_sm.lua Mon Aug 29 17:41:16 2022 +0100 @@ -18,7 +18,7 @@ module:hook_tag(xmlns_sasl2, "authenticate", function (session, auth) -- Cache action for future processing (after auth success) - session.sasl2_sm_action = auth:get_child_with_namespace(xmlns_sm); + session.sasl2_sm_action = auth:child_with_ns(xmlns_sm); end, 100); module:hook("sasl2/c2s/success", function (event)