summaryrefslogtreecommitdiffstats
path: root/apps/ca.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2019-02-28 11:30:19 +0100
committerRichard Levitte <levitte@openssl.org>2019-06-10 22:00:20 +0200
commit2ec8ad1bd8b1ae7a61ae8fe46a5633a1b50c0049 (patch)
tree3ef1bab5ea6a2bb06a130c8b454ad97d94c59280 /apps/ca.c
parent81ce7cc8d6d4377c1a3aa22247e9889ef287005f (diff)
apps/ca.c: only output DER with SPKAC input and when -out is chosen
So say the docs Fixes #8055 Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/8368) (cherry picked from commit 69f6b3ceaba493e70e1296880ea6c93e40714f0f)
Diffstat (limited to 'apps/ca.c')
-rw-r--r--apps/ca.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/ca.c b/apps/ca.c
index 69207c0662..be7e21a6f2 100644
--- a/apps/ca.c
+++ b/apps/ca.c
@@ -722,7 +722,7 @@ end_of_options:
/*****************************************************************/
if (req || gencrl) {
- if (spkac_file != NULL) {
+ if (spkac_file != NULL && outfile != NULL) {
output_der = 1;
batch = 1;
}