diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2017-02-05 13:38:13 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2017-02-05 13:38:13 +0100 |
commit | 360e573bdf5f87d23c584448c12f2973e4cc2754 (patch) | |
tree | ba90e1c113dca7a086acb7e260065332b02db175 /src/lua/lua_http.c | |
parent | 1475fa5bc677ea4baa8782b5edebf0d50c92378a (diff) | |
download | rspamd-360e573bdf5f87d23c584448c12f2973e4cc2754.tar.gz rspamd-360e573bdf5f87d23c584448c12f2973e4cc2754.zip |
[Minor] Couple of fixes for lua redirector
Diffstat (limited to 'src/lua/lua_http.c')
-rw-r--r-- | src/lua/lua_http.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lua/lua_http.c b/src/lua/lua_http.c index 4952f3404..25bdbd7aa 100644 --- a/src/lua/lua_http.c +++ b/src/lua/lua_http.c @@ -56,7 +56,7 @@ static const struct luaL_reg httplib_m[] = { }; #define RSPAMD_LUA_HTTP_FLAG_TEXT (1 << 0) -#define RSPAMD_LUA_HTTP_FLAG_NOVERIFY (1 << 0) +#define RSPAMD_LUA_HTTP_FLAG_NOVERIFY (1 << 1) struct lua_http_cbdata { lua_State *L; |