From: tb Date: Wed, 24 Nov 2021 19:27:03 +0000 (+0000) Subject: Fix a whitespace error that has annoyed me for way too long X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=b95de79625f9456dbe35d742d47be5f059d6039a;p=openbsd Fix a whitespace error that has annoyed me for way too long --- diff --git a/lib/libcrypto/ocsp/ocsp_cl.c b/lib/libcrypto/ocsp/ocsp_cl.c index da4b5ad04c1..394056e55de 100644 --- a/lib/libcrypto/ocsp/ocsp_cl.c +++ b/lib/libcrypto/ocsp/ocsp_cl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ocsp_cl.c,v 1.19 2021/11/01 20:53:08 tb Exp $ */ +/* $OpenBSD: ocsp_cl.c,v 1.20 2021/11/24 19:27:03 tb Exp $ */ /* Written by Tom Titchener for the OpenSSL * project. */ @@ -86,7 +86,7 @@ OCSP_request_add0_id(OCSP_REQUEST *req, OCSP_CERTID *cid) if ((one = OCSP_ONEREQ_new()) == NULL) goto err; if (req != NULL) { - if (!sk_OCSP_ONEREQ_push(req->tbsRequest->requestList, one)) + if (!sk_OCSP_ONEREQ_push(req->tbsRequest->requestList, one)) goto err; } OCSP_CERTID_free(one->reqCert);