diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2001-05-25 09:12:26 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-05-25 09:12:26 +0800 |
commit | c43cf87a0ebf8b482b609e76e8246679f3005a8b (patch) | |
tree | b0b326da979c62afac1fcc0646f743fa4ac00718 | |
parent | 15f9d079e63beb68266e64ff5bb481c61b615622 (diff) | |
download | gsoc2013-evolution-c43cf87a0ebf8b482b609e76e8246679f3005a8b.tar gsoc2013-evolution-c43cf87a0ebf8b482b609e76e8246679f3005a8b.tar.gz gsoc2013-evolution-c43cf87a0ebf8b482b609e76e8246679f3005a8b.tar.bz2 gsoc2013-evolution-c43cf87a0ebf8b482b609e76e8246679f3005a8b.tar.lz gsoc2013-evolution-c43cf87a0ebf8b482b609e76e8246679f3005a8b.tar.xz gsoc2013-evolution-c43cf87a0ebf8b482b609e76e8246679f3005a8b.tar.zst gsoc2013-evolution-c43cf87a0ebf8b482b609e76e8246679f3005a8b.zip |
Oops, I spelled the get-default-db function name wrong.
2001-05-24 Jeffrey Stedfast <fejj@ximian.com>
* camel-smime-context.c (camel_smime_context_new): Oops, I spelled
the get-default-db function name wrong.
svn path=/trunk/; revision=9980
-rw-r--r-- | camel/ChangeLog | 5 | ||||
-rw-r--r-- | camel/camel-smime-context.c | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index f97a85ffbf..31321e9bab 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,8 @@ +2001-05-24 Jeffrey Stedfast <fejj@ximian.com> + + * camel-smime-context.c (camel_smime_context_new): Oops, I spelled + the get-default-db function name wrong. + 2001-05-23 Jeffrey Stedfast <fejj@ximian.com> * providers/local/camel-local-folder.c diff --git a/camel/camel-smime-context.c b/camel/camel-smime-context.c index a11d933b9c..7115c13ad1 100644 --- a/camel/camel-smime-context.c +++ b/camel/camel-smime-context.c @@ -34,6 +34,7 @@ #include <cert.h> #include <certt.h> #include <certdb.h> +#include <hasht.h> #include <keylow.h> #include <secpkcs7.h> #include <secmime.h> @@ -136,7 +137,7 @@ camel_smime_context_new (CamelSession *session) camel_cipher_context_construct (CAMEL_CIPHER_CONTEXT (context), session); - handle = CERT_CertGetDefaultCertDBHandle (); + handle = CERT_GetDefaultCertDB (); if (!handle) { camel_object_unref (CAMEL_OBJECT (context)); return NULL; |