From e303d2677cd666770616450ed923cc45195fac8c Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Tue, 11 Dec 2018 20:07:04 +0000 Subject: [PATCH] [Minor] Fix invocation --- lualib/lua_selectors.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lualib/lua_selectors.lua b/lualib/lua_selectors.lua index 8d68341b4..760a15e8c 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) -- 2.39.5