From 06f3bde49611af9476b61fab038bd830c5591d7f Mon Sep 17 00:00:00 2001
From: Marco Cirillo <maranda@lightwitch.org>
Date: Sun, 15 Jul 2018 18:47:17 +0200
Subject: [PATCH] mod_dialback: correct logging statement.

---
 plugins/mod_dialback.lua | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/plugins/mod_dialback.lua b/plugins/mod_dialback.lua
index a8bcc228..f8f5cc18 100644
--- a/plugins/mod_dialback.lua
+++ b/plugins/mod_dialback.lua
@@ -189,7 +189,7 @@ module:hook("stanza/"..xmlns_db..":result", function(event)
 
 		-- Implement Dialback without Dialback (See XEP-0344) shortcircuiting
 		if origin.external_auth == "failed" and origin.from_host == from then
-			origin.log("debug", "SASL EXTERNAL for %s failed and host is not multiplexed, skipping certificate check", from);
+			origin.log("debug", "SASL EXTERNAL for %s failed and stream is not multiplexed, skipping certificate check", from);
 		else
 			module:fire_event("s2s-check-certificate-status", origin, from, to);
 		end