diff options
Diffstat (limited to 'src/lua/lua_util.c')
-rw-r--r-- | src/lua/lua_util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lua/lua_util.c b/src/lua/lua_util.c index e18bc3efb..053cce864 100644 --- a/src/lua/lua_util.c +++ b/src/lua/lua_util.c @@ -1217,7 +1217,7 @@ lua_util_decode_base32 (lua_State *L) if (s != NULL) { t = lua_newuserdata (L, sizeof (*t)); rspamd_lua_setclass (L, "rspamd{text}", -1); - t->start = rspamd_decode_base32 (s, inlen, &outlen); + t->start = rspamd_decode_base32 (s, inlen, &outlen, RSPAMD_BASE32_DEFAULT); t->len = outlen; t->flags = RSPAMD_TEXT_FLAG_OWN; } |