commit 204b318: [Minor] Misplaced brace...
Vsevolod Stakhov
vsevolod at rspamd.com
Mon Sep 11 15:49:03 UTC 2023
Author: Vsevolod Stakhov
Date: 2023-09-11 16:43:43 +0100
URL: https://github.com/rspamd/rspamd/commit/204b31837bfc1fc14c3f296b7f3748cae7e3944d (HEAD -> master)
[Minor] Misplaced brace...
---
src/ragel/content_disposition.rl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/ragel/content_disposition.rl b/src/ragel/content_disposition.rl
index ef316f7e6..862015ea1 100644
--- a/src/ragel/content_disposition.rl
+++ b/src/ragel/content_disposition.rl
@@ -13,7 +13,7 @@
(((FWS? qcontent)* FWS?) >Quoted_Str_Start %Quoted_Str_End)
DQUOTE) CFWS?;
token = 0x21..0x27 | 0x2a..0x2b | 0x2c..0x2e | 0x30..0x39 | 0x41..0x5a | 0x5e..0x7e;
- value = (quoted_string | (token -- ('"' | 0x3d | utf8_2c | utf8_3c | utf8_4c)+)) >Param_Value_Start %Param_Value_End;
+ value = (quoted_string | (token -- ('"' | 0x3d | utf8_2c | utf8_3c | utf8_4c))+) >Param_Value_Start %Param_Value_End;
attribute = (quoted_string | (token -- ('"' | '='))+) >Param_Name_Start %Param_Name_End;
parameter = CFWS? attribute FWS? "=" FWS? value CFWS?;
More information about the Commits
mailing list