1
0
mirror of git://git.gnupg.org/gnupg.git synced 2025-01-10 13:04:23 +01:00

gpg: Make commit 258192d4 actually work

* g10/sign.c (update_keysig_packet): Use digest_algo.
This commit is contained in:
Werner Koch 2012-12-19 11:47:23 +01:00
parent 75404e2dad
commit d23ec86095

View File

@ -1504,7 +1504,8 @@ update_keysig_packet( PKT_signature **ret_sig,
void *opaque ) void *opaque )
{ {
PKT_signature *sig; PKT_signature *sig;
int rc=0, digest_algo; int rc = 0;
int digest_algo;
gcry_md_hd_t md; gcry_md_hd_t md;
if ((!orig_sig || !pk || !sk) if ((!orig_sig || !pk || !sk)
@ -1517,7 +1518,7 @@ update_keysig_packet( PKT_signature **ret_sig,
else else
digest_algo = orig_sig->digest_algo; digest_algo = orig_sig->digest_algo;
if ( gcry_md_open (&md, orig_sig->digest_algo, 0 ) ) if ( gcry_md_open (&md, digest_algo, 0 ) )
BUG (); BUG ();
/* Hash the public key certificate and the user id. */ /* Hash the public key certificate and the user id. */