diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-02-20 22:22:17 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-02-20 22:22:29 +0000 |
commit | ad03eeb99a0bdaa1be1e346845b84bd9b505bf5d (patch) | |
tree | 974a112db3397d8c36d92663bb66984221a6325e /contrib | |
parent | d25084a3451432e1008b5a7a105c42f881ad4d26 (diff) | |
download | rspamd-ad03eeb99a0bdaa1be1e346845b84bd9b505bf5d.tar.gz rspamd-ad03eeb99a0bdaa1be1e346845b84bd9b505bf5d.zip |
Backport fix from libucl
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/libucl/ucl_parser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/libucl/ucl_parser.c b/contrib/libucl/ucl_parser.c index cceb8a857..ac3fe0543 100644 --- a/contrib/libucl/ucl_parser.c +++ b/contrib/libucl/ucl_parser.c @@ -259,7 +259,7 @@ ucl_lex_time_multiplier (const unsigned char c) { {'h', 60 * 60}, {'d', 60 * 60 * 24}, {'w', 60 * 60 * 24 * 7}, - {'y', 60 * 60 * 24 * 7 * 365} + {'y', 60 * 60 * 24 * 365} }; int i; |