Skip to content

Commit

Permalink
[Minor] Oops, fix index
Browse files Browse the repository at this point in the history
  • Loading branch information
vstakhov committed Jun 11, 2021
1 parent c0601ff commit c77403a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lua/lua_parsers.c
Expand Up @@ -250,7 +250,7 @@ lua_parsers_parse_mail_address (lua_State *L)
GPtrArray *addrs;
gsize len;
const gchar *str = luaL_checklstring (L, 1, &len);
gint max_addrs = luaL_optinteger(L, 2, 10240);
gint max_addrs = luaL_optinteger(L, 3, 10240);
rspamd_mempool_t *pool;
gboolean own_pool = FALSE;

Expand Down

0 comments on commit c77403a

Please sign in to comment.