From: Aki Tuomi Date: Wed, 11 Apr 2018 09:29:41 +0000 (+0300) Subject: auth: db-lua - Remove extra space from log_error X-Git-Tag: 2.3.2.rc1~83 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=29c3c0d183bef0fec68644b4abf6f0801879f4ee;p=thirdparty%2Fdovecot%2Fcore.git auth: db-lua - Remove extra space from log_error This makes it possible to use the log_error method. Broken in 9698cd24 --- diff --git a/src/auth/db-lua.c b/src/auth/db-lua.c index 1c602f0942..9c6b7c25b9 100644 --- a/src/auth/db-lua.c +++ b/src/auth/db-lua.c @@ -207,7 +207,7 @@ static const luaL_Reg auth_request_methods[] ={ { "log_debug", auth_request_lua_log_debug }, { "log_info", auth_request_lua_log_info }, { "log_warning", auth_request_lua_log_warning }, - {" log_error", auth_request_lua_log_error }, + { "log_error", auth_request_lua_log_error }, { NULL, NULL } };