]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
auth: db-lua - Remove extra space from log_error
authorAki Tuomi <aki.tuomi@dovecot.fi>
Wed, 11 Apr 2018 09:29:41 +0000 (12:29 +0300)
committerVille Savolainen <ville.savolainen@dovecot.fi>
Mon, 28 May 2018 07:07:18 +0000 (10:07 +0300)
This makes it possible to use the log_error method.

Broken in 9698cd24

src/auth/db-lua.c

index 1c602f0942f2659d002f8c02b394a14a4c2d2087..9c6b7c25b9a4b3ed6c8fa9305e138e12c12ec3f9 100644 (file)
@@ -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 }
 };