From: Vsevolod Stakhov Date: Tue, 11 Dec 2018 20:07:04 +0000 (+0000) Subject: [Minor] Fix invocation X-Git-Tag: 1.9.0~447 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e303d2677cd666770616450ed923cc45195fac8c;p=thirdparty%2Frspamd.git [Minor] Fix invocation --- diff --git a/lualib/lua_selectors.lua b/lualib/lua_selectors.lua index 8d68341b47..760a15e8c9 100644 --- a/lualib/lua_selectors.lua +++ b/lualib/lua_selectors.lua @@ -564,7 +564,7 @@ Empty string comes the first argument or 'true', non-empty string comes nil]], ['process'] = function(inp, _, args) local rspamd_ip = require "rspamd_ip" -- Non optimal: convert string to an IP address - local ip = rspamd_ip.fromstring(inp) + local ip = rspamd_ip.from_string(inp) if not ip or not ip:is_valid() then lua_util.debugm(M, "cannot convert %s to IP", inp)