From: Marcus Brinkmann Date: Sat, 12 Oct 2002 14:32:01 +0000 (+0000) Subject: 2002-10-12 Marcus Brinkmann X-Git-Tag: gpgme-0-4-0~30 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=5a7fadc5aab3191a64db4d88305134554ebe7496;p=gpgme.git 2002-10-12 Marcus Brinkmann * gpgmeplug.c (checkMessageSignature): Update call to gpgme_op_verify to use new arguments. --- diff --git a/gpgmeplug/ChangeLog b/gpgmeplug/ChangeLog index dd359c3..d9c6d9d 100644 --- a/gpgmeplug/ChangeLog +++ b/gpgmeplug/ChangeLog @@ -1,3 +1,8 @@ +2002-10-12 Marcus Brinkmann + + * gpgmeplug.c (checkMessageSignature): Update call to + gpgme_op_verify to use new arguments. + 2002-09-20 Werner Koch * gpgmeplug.c (nextCertificate): Sanity check for empty tmp_dn. diff --git a/gpgmeplug/gpgmeplug.c b/gpgmeplug/gpgmeplug.c index 03d3dbe..8ab9946 100644 --- a/gpgmeplug/gpgmeplug.c +++ b/gpgmeplug/gpgmeplug.c @@ -2761,7 +2761,8 @@ bool checkMessageSignature( char** cleartext, : strlen( signaturetext ), 1 ); - gpgme_op_verify( ctx, sigpart, datapart, &status ); + gpgme_op_verify( ctx, sigpart, isOpaqueSigned ? NULL : datapart, + isOpaqueSigned ? datapart : NULL, &status ); if( isOpaqueSigned ) { rClear = gpgme_data_release_and_get_mem( datapart, &clearLen );