From: Niels Möller Date: Wed, 9 Feb 2022 18:57:57 +0000 (+0100) Subject: Fix for definition of _gcm_hash. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=20480b1d16f312c9f79fecbf8b73a494efa43b91;p=thirdparty%2Fnettle.git Fix for definition of _gcm_hash. --- diff --git a/gcm-internal.h b/gcm-internal.h index a2f6ded3..39750057 100644 --- a/gcm-internal.h +++ b/gcm-internal.h @@ -43,11 +43,11 @@ /* Arrange so that _gcm_hash is an alias for the right implementation. */ -#if HAVE_NATIVE_gcm_hash +#if HAVE_NATIVE_gcm_hash || HAVE_NATIVE_fat_gcm_hash # define _gcm_hash _nettle_gcm_hash #elif GCM_TABLE_BITS == 8 && HAVE_NATIVE_gcm_hash8 # define _gcm_hash _nettle_gcm_hash8 -#elif !HAVE_NATIVE_fat_gcm_hash +#else # define _gcm_hash _nettle_gcm_hash_c #endif