aboutsummaryrefslogtreecommitdiffstats
path: root/camel
diff options
context:
space:
mode:
Diffstat (limited to 'camel')
-rw-r--r--camel/ChangeLog3
-rw-r--r--camel/camel-multipart-encrypted.c6
-rw-r--r--camel/camel-multipart-encrypted.h4
3 files changed, 8 insertions, 5 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index 0153a46643..c255d7d83b 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,5 +1,8 @@
2002-06-26 Jeffrey Stedfast <fejj@ximian.com>
+ * camel-multipart-encrypted.c (camel_multipart_encrypted_encrypt):
+ Oops, this needs to take a userid argument.
+
* camel-gpg-context.c (gpg_clearsign): Removed (never did anything
anyway).
diff --git a/camel/camel-multipart-encrypted.c b/camel/camel-multipart-encrypted.c
index 0d77d20e19..014f02726b 100644
--- a/camel/camel-multipart-encrypted.c
+++ b/camel/camel-multipart-encrypted.c
@@ -137,8 +137,8 @@ camel_multipart_encrypted_new (void)
int
camel_multipart_encrypted_encrypt (CamelMultipartEncrypted *mpe, CamelMimePart *content,
- CamelCipherContext *cipher, GPtrArray *recipients,
- CamelException *ex)
+ CamelCipherContext *cipher, const char *userid,
+ GPtrArray *recipients, CamelException *ex)
{
CamelMimePart *version_part, *encrypted_part;
CamelContentType *mime_type;
@@ -170,7 +170,7 @@ camel_multipart_encrypted_encrypt (CamelMultipartEncrypted *mpe, CamelMimePart *
/* encrypt the content stream */
ciphertext = camel_stream_mem_new ();
- if (camel_cipher_encrypt (cipher, FALSE, NULL, recipients, stream, ciphertext, ex) == -1) {
+ if (camel_cipher_encrypt (cipher, FALSE, userid, recipients, stream, ciphertext, ex) == -1) {
camel_object_unref (ciphertext);
camel_object_unref (stream);
return -1;
diff --git a/camel/camel-multipart-encrypted.h b/camel/camel-multipart-encrypted.h
index 9b9990a047..94bcb792cf 100644
--- a/camel/camel-multipart-encrypted.h
+++ b/camel/camel-multipart-encrypted.h
@@ -69,8 +69,8 @@ CamelType camel_multipart_encrypted_get_type (void);
CamelMultipartEncrypted *camel_multipart_encrypted_new (void);
int camel_multipart_encrypted_encrypt (CamelMultipartEncrypted *mpe, CamelMimePart *content,
- CamelCipherContext *cipher, GPtrArray *recipients,
- CamelException *ex);
+ CamelCipherContext *cipher, const char *userid,
+ GPtrArray *recipients, CamelException *ex);
CamelMimePart *camel_multipart_encrypted_decrypt (CamelMultipartEncrypted *mpe,
CamelCipherContext *cipher,