From dda01c05c2ded3f0d11703bd983a19b6ca7d5055 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Mon, 8 May 2023 22:11:07 +0100 Subject: patch 9.0.1528: libsodium encryption is only used with "huge" features Problem: Libsodium encryption is only used with "huge" features, even when manually enabled through configure. (Tony Mechelynck) Solution: Remove the condition on FEAT_HUGE. --- src/feature.h | 4 ++-- src/version.c | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/feature.h b/src/feature.h index 24c84488c..ba61fa2da 100644 --- a/src/feature.h +++ b/src/feature.h @@ -373,9 +373,9 @@ #endif /* - * libsodium - add cryptography support + * libsodium - add advanced cryptography support */ -#if defined(HAVE_SODIUM) && defined(FEAT_HUGE) +#if defined(HAVE_SODIUM) && defined(FEAT_CRYPT) # define FEAT_SODIUM #endif diff --git a/src/version.c b/src/version.c index e6d27132d..5af78a53c 100644 --- a/src/version.c +++ b/src/version.c @@ -695,6 +695,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1528, /**/ 1527, /**/ -- cgit v1.2.1