aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Groffen <grobian@gentoo.org>2024-01-01 14:17:56 +0100
committerFabian Groffen <grobian@gentoo.org>2024-01-01 14:17:56 +0100
commit92920dd0b9efed3e7467b4b18b68df86f9eee9d8 (patch)
tree25674b47ac1b38d2d5779cac106866bb410adba6 /qtegrity.c
parentgnulib: update (diff)
downloadportage-utils-92920dd0b9efed3e7467b4b18b68df86f9eee9d8.tar.gz
portage-utils-92920dd0b9efed3e7467b4b18b68df86f9eee9d8.tar.bz2
portage-utils-92920dd0b9efed3e7467b4b18b68df86f9eee9d8.zip
*: remove WHIRLPOOL hash support
WHIRLPOOL has not been in use since mid 2017, and its support is bound to be removed from OpenSSL. Signed-off-by: Fabian Groffen <grobian@gentoo.org>
Diffstat (limited to 'qtegrity.c')
-rw-r--r--qtegrity.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/qtegrity.c b/qtegrity.c
index 19fd509..0a8989b 100644
--- a/qtegrity.c
+++ b/qtegrity.c
@@ -1,5 +1,5 @@
/*
- * Copyright 2005-2019 Gentoo Foundation
+ * Copyright 2005-2024 Gentoo Foundation
* Distributed under the terms of the GNU General Public License v2
*
* Copyright 2005-2010 Ned Ludd - <solar@gentoo.org>
@@ -77,7 +77,7 @@ check_sha(char *ret_digest, char *path, char *algo)
return;
}
- hash_compute_file(path, ret_digest, ret_digest, NULL, NULL, &flen, hashes);
+ hash_compute_file(path, ret_digest, ret_digest, NULL, &flen, hashes);
(void)flen; /* we don't use the file size */
return;