summaryrefslogtreecommitdiffstats
path: root/apps/pkcs8.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2015-09-04 02:46:47 +0200
committerRichard Levitte <levitte@openssl.org>2015-09-06 01:29:36 +0200
commitd303b9d85e1888494785f87ebd9bd233e63564a9 (patch)
treeefb8e31a76f8c4541d79246b10a4fb70f79347c7 /apps/pkcs8.c
parente9daa8150abc8d96dd1e4dcd764355851f06ef2b (diff)
Make the handling of output and input formats consistent
Most of all, we needed to sort out which ones are binary and which ones are text, and make sure they are treated accordingly and consistently so Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'apps/pkcs8.c')
-rw-r--r--apps/pkcs8.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/pkcs8.c b/apps/pkcs8.c
index b120b93aa9..e3cb7750e1 100644
--- a/apps/pkcs8.c
+++ b/apps/pkcs8.c
@@ -239,10 +239,10 @@ int pkcs8_main(int argc, char **argv)
if ((pbe_nid == -1) && !cipher)
pbe_nid = NID_pbeWithMD5AndDES_CBC;
- in = bio_open_default(infile, "rb");
+ in = bio_open_default(infile, RB(informat));
if (in == NULL)
goto end;
- out = bio_open_owner(outfile, "wb", private);
+ out = bio_open_owner(outfile, WB(outformat), private);
if (out == NULL)
goto end;