From: Thomas Oettli Date: Fri, 13 Sep 2024 09:40:13 +0000 (+0200) Subject: [Minor] remove unnecessary calls of lpeg.P in DMARC grammar X-Git-Tag: 3.10.0~17^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=3f1cbad721afaa58a8eb140227d0c60f6df2162f;p=rspamd.git [Minor] remove unnecessary calls of lpeg.P in DMARC grammar Just to make to code more readable. --- diff --git a/lualib/plugins/dmarc.lua b/lualib/plugins/dmarc.lua index b05a3a0ef..720c76e16 100644 --- a/lualib/plugins/dmarc.lua +++ b/lualib/plugins/dmarc.lua @@ -241,10 +241,10 @@ local function gen_dmarc_grammar() local space = lpeg.space ^ 0 local name = lpeg.C(lpeg.alpha ^ 1) local sep = space * lpeg.S("\\;") * space - local value = lpeg.C(lpeg.P(lpeg.P((lpeg.space ^ 1) * lpeg.graph + lpeg.P(lpeg.graph)) - sep) ^ 1) + local value = lpeg.C(((lpeg.space ^ 1 * lpeg.graph + lpeg.graph) - sep) ^ 1) local pair = lpeg.Cg(name * "=" * space * value) * sep ^ -1 local list = lpeg.Cf(lpeg.Ct("") * pair ^ 0, rawset) - local version = lpeg.P("v") * space * lpeg.P("=") * space * lpeg.P("DMARC1") + local version = "v" * space * "=" * space * "DMARC1" local record = version * sep * list return record