# HG changeset patch # User Kim Alvefur # Date 1395327337 -3600 # Node ID 5724008bbdb19dc95018b3b23ab7a815b4fcf806 # Parent 103d685e2153e411109b60066ed5cf5cf33bcd50 mod_s2s_auth_dane: Fix typo in debug statement diff -r 103d685e2153 -r 5724008bbdb1 mod_s2s_auth_dane/mod_s2s_auth_dane.lua --- a/mod_s2s_auth_dane/mod_s2s_auth_dane.lua Thu Mar 20 15:31:15 2014 +0100 +++ b/mod_s2s_auth_dane/mod_s2s_auth_dane.lua Thu Mar 20 15:55:37 2014 +0100 @@ -7,7 +7,6 @@ -- _xmpp-server.example.com. IN TLSA 3 0 1 -- -- Known issues: --- Race condition -- Could be done much cleaner if mod_s2s was using util.async -- -- TODO Things to test/handle: @@ -112,7 +111,7 @@ host_session.log("debug", "Pausing connection until DANE lookup is completed"); host_session.conn:pause() local function resume() - module:log("eebug", "Resuming connection"); + module:log("debug", "Resuming connection"); host_session.conn:resume() end if not dane_lookup(host_session, resume) then