plugins/mod_saslauth.lua
changeset 7899 1a2674123c1c
parent 7787 9f70d35a1602
child 7900 08bde6a6fd56
--- a/plugins/mod_saslauth.lua	Wed Feb 15 15:30:34 2017 +0100
+++ b/plugins/mod_saslauth.lua	Wed Feb 15 22:59:19 2017 +0100
@@ -223,6 +223,7 @@
 local xmpp_session_attr = { xmlns='urn:ietf:params:xml:ns:xmpp-session' };
 module:hook("stream-features", function(event)
 	local origin, features = event.origin, event.features;
+	local log = origin.log or log;
 	if not origin.username then
 		if secure_auth_only and not origin.secure then
 			return;
@@ -251,7 +252,7 @@
 		if mechanisms[1] then
 			features:add_child(mechanisms);
 		else
-			(origin.log or log)("warn", "No SASL mechanisms to offer");
+			log("warn", "No SASL mechanisms to offer");
 		end
 	else
 		features:tag("bind", bind_attr):tag("required"):up():up();