aboutsummaryrefslogtreecommitdiffstats
path: root/src/lua/lua_redis.c
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@highsecure.ru>2018-02-22 12:58:29 +0000
committerVsevolod Stakhov <vsevolod@highsecure.ru>2018-02-22 13:57:42 +0000
commit946ccf2dd8c9a9ed3f79a20732877f6edb2e5b33 (patch)
tree9fe11203eec68efc2bcc323bc386acda2880ba67 /src/lua/lua_redis.c
parent8b566496f827630b29552fe5bb2fb33e42ef4408 (diff)
downloadrspamd-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.c2
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);
}