diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-06-23 14:20:38 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-06-23 14:20:38 +0100 |
commit | c137be80df707ffaf71d5d3ed1c38c20fc9b8e9a (patch) | |
tree | f68e0d0eeff2a5f3762495ff61779a80bd1b7881 /src/lua/lua_upstream.c | |
parent | 86a83ea8f15d57e530b4fa937aa9e4720f3e7444 (diff) | |
download | rspamd-c137be80df707ffaf71d5d3ed1c38c20fc9b8e9a.tar.gz rspamd-c137be80df707ffaf71d5d3ed1c38c20fc9b8e9a.zip |
Avoid non-portable lua integers.
Diffstat (limited to 'src/lua/lua_upstream.c')
-rw-r--r-- | src/lua/lua_upstream.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lua/lua_upstream.c b/src/lua/lua_upstream.c index 31ced8103..0b2739903 100644 --- a/src/lua/lua_upstream.c +++ b/src/lua/lua_upstream.c @@ -184,7 +184,7 @@ lua_upstream_list_create (lua_State *L) def = luaL_checkstring (L, 1); if (def) { if (lua_gettop (L) >= 2) { - default_port = luaL_checkinteger (L, 2); + default_port = luaL_checknumber (L, 2); } tokens = g_strsplit_set (def, ",;", 0); |