diff options
author | Werner Koch <[email protected]> | 2011-09-20 07:54:27 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2011-09-20 07:54:27 +0000 |
commit | 7c000f18de5e7f94adc1364a2a56c99cfb23d8f8 (patch) | |
tree | 2e4ed8a7c8f7baa04087b9e4c247306f3eea3342 /g10/cipher.c | |
parent | Allow no protection in pinentry-mode=loopback. (diff) | |
download | gnupg-7c000f18de5e7f94adc1364a2a56c99cfb23d8f8.tar.gz gnupg-7c000f18de5e7f94adc1364a2a56c99cfb23d8f8.zip |
Replace gcry_md_start_debug by gcry_md_debug.
This is to allow building with Libgcrypt master (1.6) which has some
cleanups in the API/ABI.
Diffstat (limited to '')
-rw-r--r-- | g10/cipher.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/g10/cipher.c b/g10/cipher.c index 07df792c9..10f0ebb96 100644 --- a/g10/cipher.c +++ b/g10/cipher.c @@ -61,7 +61,7 @@ write_header( cipher_filter_context_t *cfx, IOBUF a ) ed.mdc_method = DIGEST_ALGO_SHA1; gcry_md_open (&cfx->mdc_hash, DIGEST_ALGO_SHA1, 0); if ( DBG_HASHING ) - gcry_md_start_debug (cfx->mdc_hash, "creatmdc"); + gcry_md_debug (cfx->mdc_hash, "creatmdc"); } { |