]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Fix lint
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Mon, 13 Feb 2017 16:16:03 +0000 (16:16 +0000)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Mon, 13 Feb 2017 16:16:03 +0000 (16:16 +0000)
src/plugins/lua/phishing.lua

index 8a56903d792be6e068f1101378f053bc0e33b994..ebd37ef0c2ccb2506c81cf219d492ffe86147dd2 100644 (file)
@@ -131,8 +131,8 @@ local function phishing_cb(task)
         end
 
         -- Now we can safely remove the last dot component if it is the same
-        local b,e = string.find(tld, '%.[^%.]+$')
-        local b1,e1 = string.find(ptld, '%.[^%.]+$')
+        local b,_ = string.find(tld, '%.[^%.]+$')
+        local b1,_ = string.find(ptld, '%.[^%.]+$')
 
         if b1 and b then
           if string.sub(tld, b) == string.sub(ptld, b1) then