summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/usr.sbin/ocspcheck/ocspcheck.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/usr.sbin/ocspcheck/ocspcheck.c b/src/usr.sbin/ocspcheck/ocspcheck.c
index 847477c2d1..8ce1008dbe 100644
--- a/src/usr.sbin/ocspcheck/ocspcheck.c
+++ b/src/usr.sbin/ocspcheck/ocspcheck.c
@@ -557,10 +557,9 @@ main (int argc, char **argv)
557 * we have been given to check. 557 * we have been given to check.
558 */ 558 */
559 if ((castore = read_cacerts(cafile)) == NULL) 559 if ((castore = read_cacerts(cafile)) == NULL)
560 errx(EXIT_FAILURE, "Unable to load %s", cafile); 560 exit(EXIT_FAILURE);
561
562 if ((request = ocsp_request_new_from_cert(certfile, nonce)) == NULL) 561 if ((request = ocsp_request_new_from_cert(certfile, nonce)) == NULL)
563 errx(EXIT_FAILURE, "Unable to build OCSP request"); 562 exit(EXIT_FAILURE);
564 563
565 if ((host = url2host(request->url, &port, &path)) == NULL) 564 if ((host = url2host(request->url, &port, &path)) == NULL)
566 errx(EXIT_FAILURE, "Invalid OCSP url %s from %s", request->url, 565 errx(EXIT_FAILURE, "Invalid OCSP url %s from %s", request->url,
@@ -605,7 +604,7 @@ main (int argc, char **argv)
605 OPENSSL_add_all_algorithms_noconf(); 604 OPENSSL_add_all_algorithms_noconf();
606 if (!validate_response(hget->bodypart, hget->bodypartsz, 605 if (!validate_response(hget->bodypart, hget->bodypartsz,
607 request, castore, host, certfile)) 606 request, castore, host, certfile))
608 errx(EXIT_FAILURE, "Can not validate %s", certfile); 607 exit(EXIT_FAILURE);
609 608
610 /* 609 /*
611 * If we have been given a place to save a staple, 610 * If we have been given a place to save a staple,