Fix from HEAD. Except we can't stream multipart/signed in 0.9.7 so that case
authorDr. Stephen Henson <steve@openssl.org>
Thu, 13 Jul 2006 20:36:51 +0000 (20:36 +0000)
committerDr. Stephen Henson <steve@openssl.org>
Thu, 13 Jul 2006 20:36:51 +0000 (20:36 +0000)
still rewinds the stream.

apps/smime.c

index 51bc893ffa8ab3e4da3b4e195fe182ac282cde65..1204b1f6fc76e748ec4bdc878a179a4a23bfce0e 100644 (file)
@@ -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;
                }