diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2018-02-22 12:58:29 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2018-02-22 13:57:42 +0000 |
commit | 946ccf2dd8c9a9ed3f79a20732877f6edb2e5b33 (patch) | |
tree | 9fe11203eec68efc2bcc323bc386acda2880ba67 /src/lua/lua_redis.c | |
parent | 8b566496f827630b29552fe5bb2fb33e42ef4408 (diff) | |
download | rspamd-946ccf2dd8c9a9ed3f79a20732877f6edb2e5b33.tar.gz rspamd-946ccf2dd8c9a9ed3f79a20732877f6edb2e5b33.zip |
[Minor] Return result from sqlite queries
Diffstat (limited to 'src/lua/lua_redis.c')
-rw-r--r-- | src/lua/lua_redis.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lua/lua_redis.c b/src/lua/lua_redis.c index 557639cef..3651f9c7a 100644 --- a/src/lua/lua_redis.c +++ b/src/lua/lua_redis.c @@ -1299,7 +1299,7 @@ lua_redis_exec (lua_State *L) } else { if (!lua_checkstack (L, (ctx->cmds_pending * 2) + 1)) { - return luaL_error (L, "cannot resiz stack to fit %d commands", + return luaL_error (L, "cannot resize stack to fit %d commands", ctx->cmds_pending); } |