diff options
Diffstat (limited to 'apps/nseq.c')
-rw-r--r-- | apps/nseq.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/nseq.c b/apps/nseq.c index 5c8ed172c2..06893c82ce 100644 --- a/apps/nseq.c +++ b/apps/nseq.c @@ -112,10 +112,10 @@ int nseq_main(int argc, char **argv) if (!app_load_modules(NULL)) goto end; - in = bio_open_default(infile, "r"); + in = bio_open_default(infile, 'r', FORMAT_PEM); if (in == NULL) goto end; - out = bio_open_default(outfile, "w"); + out = bio_open_default(outfile, 'w', FORMAT_PEM); if (out == NULL) goto end; |