From: pcarana Date: Fri, 25 Oct 2019 22:45:32 +0000 (-0500) Subject: Use blksize_t instead of __blksize_t X-Git-Tag: v1.1.1~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=54d6b6303783d3416e3a786591ea7b06b0fe6ace;p=thirdparty%2FFORT-validator.git Use blksize_t instead of __blksize_t --- diff --git a/src/crypto/hash.c b/src/crypto/hash.c index e7cc0ed1..9e69967a 100644 --- a/src/crypto/hash.c +++ b/src/crypto/hash.c @@ -3,6 +3,7 @@ #include #include #include +#include /* For blksize_t */ #include "file.h" #include "log.h" @@ -39,7 +40,7 @@ hash_file(char const *algorithm, struct rpki_uri *uri, unsigned char *result, FILE *file; struct stat stat; unsigned char *buffer; - __blksize_t buffer_len; + blksize_t buffer_len; size_t consumed; EVP_MD_CTX *ctx; int error;