From e46931108a1c4ae35903e4b6b481b341545f3ea3 Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Tue, 20 Mar 2018 11:16:39 +0000 Subject: Fix the OCSP responder mode Broken by commit 3e3c7c36. Fixes #5681 Reviewed-by: Matthias St. Pierre (Merged from https://github.com/openssl/openssl/pull/5688) --- apps/ocsp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/ocsp.c') diff --git a/apps/ocsp.c b/apps/ocsp.c index ed2281a596..7581531ccf 100644 --- a/apps/ocsp.c +++ b/apps/ocsp.c @@ -551,7 +551,7 @@ int ocsp_main(int argc, char **argv) } if (ridx_filename != NULL - && (rkey != NULL || rsigner != NULL || rca_cert != NULL)) { + && (rkey == NULL || rsigner == NULL || rca_cert == NULL)) { BIO_printf(bio_err, "Responder mode requires certificate, key, and CA.\n"); goto end; -- cgit v1.2.3