Don't use FORMAT_BASE64 format when compressing / decompressing
authorRichard Levitte <levitte@openssl.org>
Wed, 13 Apr 2016 00:40:39 +0000 (02:40 +0200)
committerRichard Levitte <levitte@openssl.org>
Wed, 13 Apr 2016 09:36:46 +0000 (11:36 +0200)
commit802d2243083a46fbb4afb15a78c3db07f0092af3
tree434c9dbad28cd07d47274f61b6f59e7e342b3fe9
parentda430a5555b97cc0fe5e9bf6cfd64be98e8b5bcb
Don't use FORMAT_BASE64 format when compressing / decompressing

When compressing, the output / input is a binary format, not a text
format like BASE64.  This is important on Windows, where a ^Z in a
text file is seen as EOF, and there could be a ^Z somewhere in a
compressed file, cutting it short as input.

Reviewed-by: Matt Caswell <matt@openssl.org>
apps/enc.c