# HG changeset patch # User Bram Moolenaar # Date 1683580503 -7200 # Node ID ba9862df7d1335de20dbb18b8ce120be540cb41a # Parent 0c733d132cff5e858dab1c8b31f4e35e7b090c7f patch 9.0.1528: libsodium encryption is only used with "huge" features Commit: https://github.com/vim/vim/commit/dda01c05c2ded3f0d11703bd983a19b6ca7d5055 Author: Bram Moolenaar Date: Mon May 8 22:11:07 2023 +0100 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. diff --git a/src/feature.h b/src/feature.h --- 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 --- a/src/version.c +++ b/src/version.c @@ -696,6 +696,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1528, +/**/ 1527, /**/ 1526,