projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0f562e2
)
Fix from HEAD. Except we can't stream multipart/signed in 0.9.7 so that case
author
Dr. Stephen Henson
<steve@openssl.org>
Thu, 13 Jul 2006 20:36:51 +0000
(20:36 +0000)
committer
Dr. Stephen Henson
<steve@openssl.org>
Thu, 13 Jul 2006 20:36:51 +0000
(20:36 +0000)
still rewinds the stream.
apps/smime.c
patch
|
blob
|
history
diff --git
a/apps/smime.c
b/apps/smime.c
index 51bc893ffa8ab3e4da3b4e195fe182ac282cde65..1204b1f6fc76e748ec4bdc878a179a4a23bfce0e 100644
(file)
--- a/
apps/smime.c
+++ b/
apps/smime.c
@@
-483,7
+483,8
@@
int MAIN(int argc, char **argv)
p7 = PKCS7_encrypt(encerts, in, cipher, flags);
} else if(operation == SMIME_SIGN) {
p7 = PKCS7_sign(signer, key, other, in, flags);
- if (BIO_reset(in) != 0 && (flags & PKCS7_DETACHED)) {
+ if ((flags & PKCS7_DETACHED) && (outformat == FORMAT_SMIME)
+ && (BIO_reset(in) != 0)) {
BIO_printf(bio_err, "Can't rewind input file\n");
goto end;
}