diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-06-15 09:26:38 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-06-15 09:26:38 +0100 |
commit | e3866554181f3afc44afcd3cbd24fc2d4aac7f2d (patch) | |
tree | 176b4fcee18df095e3d5445b29aa4b064780c523 /src/ragel | |
parent | 9aad3e020ba34916fd680fc157923d5d6906e1a2 (diff) | |
download | rspamd-e3866554181f3afc44afcd3cbd24fc2d4aac7f2d.tar.gz rspamd-e3866554181f3afc44afcd3cbd24fc2d4aac7f2d.zip |
[Fix] Fix parser
Diffstat (limited to 'src/ragel')
-rw-r--r-- | src/ragel/smtp_date.rl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ragel/smtp_date.rl b/src/ragel/smtp_date.rl index da5872439..eb5d0cdc5 100644 --- a/src/ragel/smtp_date.rl +++ b/src/ragel/smtp_date.rl @@ -21,7 +21,7 @@ minute = digit_2; second = digit_2; time_of_day = hour ":" minute (":" second )?; - zone = FWS ("+" | "-") >Sign_Start %Sign_End digit_4; + zone = FWS ("+" | "-") digit_4; time = time_of_day zone; date_time = (day_of_week ",")? date time; }%%
\ No newline at end of file |