aboutsummaryrefslogtreecommitdiff
path: root/crypto/pkcs7/pk7_mime.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2000-08-21 22:02:23 +0000
committerDr. Stephen Henson <steve@openssl.org>2000-08-21 22:02:23 +0000
commiteaa28181898b8ca0b54552a3290789bb17444c8a (patch)
tree4360130c00f3d122b416ba40efee781e313db5c7 /crypto/pkcs7/pk7_mime.c
parent622ec449e5fe8f1e6bed036705ea97c74c9be1b7 (diff)
downloadopenssl-eaa28181898b8ca0b54552a3290789bb17444c8a.zip
openssl-eaa28181898b8ca0b54552a3290789bb17444c8a.tar.gz
openssl-eaa28181898b8ca0b54552a3290789bb17444c8a.tar.bz2
Various fixes...
initialize ex_pathlen to -1 so it isn't checked if pathlen is not present. set ucert to NULL in apps/pkcs12.c otherwise it gets freed twice. remove extraneous '\r' in MIME encoder. Allow a NULL to be passed to X509_gmtime_adj() Make PKCS#7 code use definite length encoding rather then the indefinite stuff it used previously.
Diffstat (limited to 'crypto/pkcs7/pk7_mime.c')
-rw-r--r--crypto/pkcs7/pk7_mime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/pkcs7/pk7_mime.c b/crypto/pkcs7/pk7_mime.c
index 9741aa5..a7b6929 100644
--- a/crypto/pkcs7/pk7_mime.c
+++ b/crypto/pkcs7/pk7_mime.c
@@ -170,7 +170,7 @@ int SMIME_write_PKCS7(BIO *bio, PKCS7 *p7, BIO *data, int flags)
BIO_printf(bio, "micalg=sha1 ; boundary=\"----%s\"\n\n", bound);
BIO_printf(bio, "This is an S/MIME signed message\n\n");
/* Now write out the first part */
- BIO_printf(bio, "------%s\r\n", bound);
+ BIO_printf(bio, "------%s\n", bound);
if(flags & PKCS7_TEXT) BIO_printf(bio, "Content-Type: text/plain\n\n");
while((i = BIO_read(data, linebuf, MAX_SMLEN)) > 0)
BIO_write(bio, linebuf, i);