Skip to content

Commit

Permalink
Fix FTBFS in utils.c
Browse files Browse the repository at this point in the history
U+0020 SPACE and U+00A0 NO-BREAK SPACE look the same, but they
aren't the same.
  • Loading branch information
mamarley authored and Flole998 committed Apr 7, 2022
1 parent ea65f80 commit fd01737
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit fd01737

Please sign in to comment.