]> source.dussan.org Git - rspamd.git/commitdiff
Replace gfind with gmatch.
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Fri, 8 Nov 2013 16:42:04 +0000 (16:42 +0000)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Fri, 8 Nov 2013 16:42:04 +0000 (16:42 +0000)
Reported by: Andrew Lewis

src/plugins/lua/emails.lua
src/plugins/lua/ratelimit.lua
src/plugins/lua/trie.lua

index 80855453d208dc58b295658d630efb1fde52eacb..d99b0966be9f492742589702523e5c8a21549465 100644 (file)
@@ -17,7 +17,7 @@ function split(str, delim, maxNb)
        local pat = "(.-)" .. delim .. "()"
        local nb = 0
        local lastPos
-       for part, pos in string.gfind(str, pat) do
+       for part, pos in string.gmatch(str, pat) do
                nb = nb + 1
                result[nb] = part
                lastPos = pos
index 787f9fc9416dbec759e73058993b4d2eb3968ffa..2bc2cac42aab72819a594582d618df055c3ade83 100644 (file)
@@ -233,7 +233,7 @@ local function split(str, delim, maxNb)
        local pat = "(.-)" .. delim .. "()"
        local nb = 0
        local lastPos
-       for part, pos in string.gfind(str, pat) do
+       for part, pos in string.gmatch(str, pat) do
                nb = nb + 1
                result[nb] = part
                lastPos = pos
index 65524745c9d75ec453ee172e6f74eb12d8a6d1e3..bda978cb72ed7617d8f0d24ffc0cbef1dfa9711a 100644 (file)
@@ -14,7 +14,7 @@ local function split(str, delim, maxNb)
        local pat = "(.-)" .. delim .. "()"
        local nb = 0
        local lastPos
-       for part, pos in string.gfind(str, pat) do
+       for part, pos in string.gmatch(str, pat) do
                nb = nb + 1
                result[nb] = part
                lastPos = pos