diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2001-04-10 23:47:00 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-04-10 23:47:00 +0800 |
commit | eee943f21ebc92e70cec963950c2fc0a29cab544 (patch) | |
tree | df2c372bcf6ea6cf9dad5c37a38e132d11d8625a /camel/camel-pgp-mime.c | |
parent | bcc5969a21062e0e24bb5544df44a5accc0570e6 (diff) | |
download | gsoc2013-evolution-eee943f21ebc92e70cec963950c2fc0a29cab544.tar gsoc2013-evolution-eee943f21ebc92e70cec963950c2fc0a29cab544.tar.gz gsoc2013-evolution-eee943f21ebc92e70cec963950c2fc0a29cab544.tar.bz2 gsoc2013-evolution-eee943f21ebc92e70cec963950c2fc0a29cab544.tar.lz gsoc2013-evolution-eee943f21ebc92e70cec963950c2fc0a29cab544.tar.xz gsoc2013-evolution-eee943f21ebc92e70cec963950c2fc0a29cab544.tar.zst gsoc2013-evolution-eee943f21ebc92e70cec963950c2fc0a29cab544.zip |
Added camel-pgp-context.[c,h] to the build. Also added tests/smime/pgp.c
2001-04-06 Jeffrey Stedfast <fejj@ximian.com>
* Makefile.am: Added camel-pgp-context.[c,h] to the build. Also
added tests/smime/pgp.c and Makefile.am
* tests/smime/pgp.c: New test suite for PGP functions.
* camel-pgp-context.c: Various fixes to get it to build.
svn path=/trunk/; revision=9213
Diffstat (limited to 'camel/camel-pgp-mime.c')
-rw-r--r-- | camel/camel-pgp-mime.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/camel/camel-pgp-mime.c b/camel/camel-pgp-mime.c index 6d256ba0b2..72f29248a7 100644 --- a/camel/camel-pgp-mime.c +++ b/camel/camel-pgp-mime.c @@ -255,8 +255,8 @@ camel_pgp_mime_part_sign (CamelPgpContext *context, CamelMimePart **mime_part, c g_slist_free (encodings); /* construct the pgp-signature mime part */ - d(fprintf (stderr, "signature:\n%*.s\n", CAMEL_STREAM_MEM (sigstream)->buf->len, - CAMEL_STREAM_MEM (sigstream)->buf->data)); + d(fprintf (stderr, "signature:\n%*.s\n", CAMEL_STREAM_MEM (sigstream)->buffer->len, + CAMEL_STREAM_MEM (sigstream)->buffer->data)); signed_part = camel_mime_part_new (); camel_data_wrapper_construct_from_stream (CAMEL_DATA_WRAPPER (signed_part), sigstream); camel_object_unref (CAMEL_OBJECT (sigstream)); |