diff options
-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; |