aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-pgp-mime.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2001-05-15 06:25:02 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2001-05-15 06:25:02 +0800
commit2798919c3c8031d9bff195b83feeb61a4583d8ee (patch)
treeaadb5b0db44aa5993868b2f3ea5a1e04ffccaba6 /camel/camel-pgp-mime.c
parentdbeec96be886a5253455f804683c1c3b3c711fc8 (diff)
downloadgsoc2013-evolution-2798919c3c8031d9bff195b83feeb61a4583d8ee.tar
gsoc2013-evolution-2798919c3c8031d9bff195b83feeb61a4583d8ee.tar.gz
gsoc2013-evolution-2798919c3c8031d9bff195b83feeb61a4583d8ee.tar.bz2
gsoc2013-evolution-2798919c3c8031d9bff195b83feeb61a4583d8ee.tar.lz
gsoc2013-evolution-2798919c3c8031d9bff195b83feeb61a4583d8ee.tar.xz
gsoc2013-evolution-2798919c3c8031d9bff195b83feeb61a4583d8ee.tar.zst
gsoc2013-evolution-2798919c3c8031d9bff195b83feeb61a4583d8ee.zip
Lots of fixes to get this to almost compile. Still struggling with the
2001-05-14 Jeffrey Stedfast <fejj@ximian.com> * camel-smime-context.c: Lots of fixes to get this to almost compile. Still struggling with the fact that CERTCertDBHandle is an "incomplete type". *sigh*. * camel-smime.c (camel_smime_part_verify): Updated to pass in a hash argument to camel_smime_verify(). * camel-pgp-mime.c (camel_pgp_mime_part_verify): Update according to the changes in the context API. * camel-pgp-context.c (pgp_verify): Updated to take a CamelCipherHash argument. * camel-cipher-context.c (camel_cipher_verify): Now takes a hash argument since the S/MIME code needs this. svn path=/trunk/; revision=9804
Diffstat (limited to 'camel/camel-pgp-mime.c')
-rw-r--r--camel/camel-pgp-mime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/camel-pgp-mime.c b/camel/camel-pgp-mime.c
index ba91804579..adbbb08d39 100644
--- a/camel/camel-pgp-mime.c
+++ b/camel/camel-pgp-mime.c
@@ -358,7 +358,7 @@ camel_pgp_mime_part_verify (CamelPgpContext *context, CamelMimePart *mime_part,
camel_stream_reset (sigstream);
/* verify */
- valid = camel_pgp_verify (context, stream, sigstream, ex);
+ valid = camel_pgp_verify (context, CAMEL_CIPHER_HASH_DEFAULT, stream, sigstream, ex);
camel_object_unref (CAMEL_OBJECT (sigstream));
camel_object_unref (CAMEL_OBJECT (stream));