From: Michael Marley Date: Thu, 7 Apr 2022 01:47:49 +0000 (-0400) Subject: Fix FTBFS in utils.c X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fd01737270d98c28465c86a688bd7d1c640486c5;p=thirdparty%2Ftvheadend.git Fix FTBFS in utils.c U+0020 SPACE and U+00A0 NO-BREAK SPACE look the same, but they aren't the same. --- diff --git a/src/utils.c b/src/utils.c index eecb10e11..bc6401d22 100644 --- a/src/utils.c +++ b/src/utils.c @@ -616,7 +616,7 @@ sha256sum ( const char *str, int lowercase ) char * sha512sum256 ( const char *str, int lowercase ) { -#if OPENSSL_VERSION_NUMBER >= 0x1010101fL && !defined(LIBRESSL_VERSION_NUMBER) +#if OPENSSL_VERSION_NUMBER >= 0x1010101fL && !defined(LIBRESSL_VERSION_NUMBER) return openssl_hash_hexstr(str, lowercase, EVP_sha512_256(), 32); #else return NULL;