diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2018-05-19 14:51:30 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2018-05-19 14:51:30 +0100 |
commit | 11334a875ab62460e64ece516223626a2415bc0f (patch) | |
tree | 45815045a85847cc3e61df6af0b4c811d43c2e75 /contrib/libucl | |
parent | 3fc31cc8724885d8d0f2d7ff8028f3b4f6b49c8e (diff) | |
download | rspamd-11334a875ab62460e64ece516223626a2415bc0f.tar.gz rspamd-11334a875ab62460e64ece516223626a2415bc0f.zip |
[Feature] Support encrypted configs in UCL
Diffstat (limited to 'contrib/libucl')
-rw-r--r-- | contrib/libucl/ucl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/libucl/ucl.h b/contrib/libucl/ucl.h index f0dbeca84..34888b8c9 100644 --- a/contrib/libucl/ucl.h +++ b/contrib/libucl/ucl.h @@ -1290,7 +1290,7 @@ typedef bool (*ucl_parser_special_handler_t) (struct ucl_parser *parser, * Special handler structure */ struct ucl_parser_special_handler { - unsigned char *magic; + const unsigned char *magic; size_t magic_len; ucl_parser_special_handler_t handler; void (*free_function) (unsigned char *data, size_t len, void *user_data); |