summaryrefslogtreecommitdiff
path: root/cipher/md.c
diff options
context:
space:
mode:
Diffstat (limited to 'cipher/md.c')
-rw-r--r--cipher/md.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cipher/md.c b/cipher/md.c
index 46f20e4d..ce128bb7 100644
--- a/cipher/md.c
+++ b/cipher/md.c
@@ -1305,7 +1305,7 @@ gcry_md_list (int *list, int *list_length)
/* Run the selftests for digest algorithm ALGO with optional reporting
function REPORT. */
gpg_error_t
-_gcry_md_selftest (int algo, selftest_report_func_t report)
+_gcry_md_selftest (int algo, int extended, selftest_report_func_t report)
{
gcry_module_t module = NULL;
cipher_extra_spec_t *extraspec = NULL;
@@ -1319,7 +1319,7 @@ _gcry_md_selftest (int algo, selftest_report_func_t report)
extraspec = module->extraspec;
ath_mutex_unlock (&digests_registered_lock);
if (extraspec && extraspec->selftest)
- ec = extraspec->selftest (algo, report);
+ ec = extraspec->selftest (algo, extended, report);
else
{
ec = GPG_ERR_DIGEST_ALGO;