Fix mod_legacyauth to not use old stanza_dispatch

This commit is contained in:
Matthew Wild 2008-10-24 14:45:50 +01:00
parent 74740297f3
commit 652190787c

View file

@ -49,7 +49,7 @@ add_iq_handler("c2s_unauthed", "jabber:iq:auth",
reply.attr.type = "error"; reply.attr.type = "error";
reply:tag("error", { code = "401", type = "auth" }) reply:tag("error", { code = "401", type = "auth" })
:tag("not-authorized", { xmlns = "urn:ietf:params:xml:ns:xmpp-stanzas" }); :tag("not-authorized", { xmlns = "urn:ietf:params:xml:ns:xmpp-stanzas" });
dispatch_stanza(reply); send(session, reply);
return true; return true;
end end
end end