summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-07-18 10:39:34 +0000
committerRichard Levitte <levitte@openssl.org>2002-07-18 10:39:34 +0000
commitc34a865f984c63bf8d545484d5bd32b8a28da5e1 (patch)
tree7e16c34d26b7ce577c251d36841e31ebc4a9f093 /apps
parent4f27f6be7377c800b3b311f30afbcdc2d1f8ad5a (diff)
Reverse the change with the following log, it needs further investigation:
Make S/MIME output conform with the mail and MIME standards. PR: 151
Diffstat (limited to 'apps')
-rw-r--r--apps/smime.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/smime.c b/apps/smime.c
index 756f2500d4..ebdac15d06 100644
--- a/apps/smime.c
+++ b/apps/smime.c
@@ -473,9 +473,9 @@ int MAIN(int argc, char **argv)
} else if(operation == SMIME_PK7OUT) {
PEM_write_bio_PKCS7(out, p7);
} else {
- if(to) BIO_printf(out, "To: %s\r\n", to);
- if(from) BIO_printf(out, "From: %s\r\n", from);
- if(subject) BIO_printf(out, "Subject: %s\r\n", subject);
+ if(to) BIO_printf(out, "To: %s\n", to);
+ if(from) BIO_printf(out, "From: %s\n", from);
+ if(subject) BIO_printf(out, "Subject: %s\n", subject);
if(outformat == FORMAT_SMIME)
SMIME_write_PKCS7(out, p7, in, flags);
else if(outformat == FORMAT_PEM)