Changeset

7962:4e9b307c30dd

mod_saslauth: Fix typoed variable name [luacheck]
author Kim Alvefur <zash@zash.se>
date Mon, 06 Mar 2017 16:05:24 +0100
parents 7961:ff556d010225
children 7963:4f9535b7fdf7 7964:1023f2add7fe
files plugins/mod_saslauth.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/plugins/mod_saslauth.lua	Mon Mar 06 16:01:27 2017 +0100
+++ b/plugins/mod_saslauth.lua	Mon Mar 06 16:05:24 2017 +0100
@@ -105,7 +105,7 @@
 		end
 	end
 	if text and condition then
-		condition = connection .. ": " .. text;
+		condition = condition .. ": " .. text;
 	end
 	module:log("info", "SASL EXTERNAL with %s failed: %s", session.to_host, condition);