diff options
author | tb <> | 2021-11-24 19:27:03 +0000 |
---|---|---|
committer | tb <> | 2021-11-24 19:27:03 +0000 |
commit | b63cdd7389e1089db943ac9b1e34df034c765d9a (patch) | |
tree | cc66cbab7af91956dbb45305aebaa2f506ef183d /src/lib | |
parent | 0b0465cad1389537c86735b278fe4798a1ddf803 (diff) | |
download | openbsd-b63cdd7389e1089db943ac9b1e34df034c765d9a.tar.gz openbsd-b63cdd7389e1089db943ac9b1e34df034c765d9a.tar.bz2 openbsd-b63cdd7389e1089db943ac9b1e34df034c765d9a.zip |
Fix a whitespace error that has annoyed me for way too long
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libcrypto/ocsp/ocsp_cl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/ocsp/ocsp_cl.c b/src/lib/libcrypto/ocsp/ocsp_cl.c index da4b5ad04c..394056e55d 100644 --- a/src/lib/libcrypto/ocsp/ocsp_cl.c +++ b/src/lib/libcrypto/ocsp/ocsp_cl.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ocsp_cl.c,v 1.19 2021/11/01 20:53:08 tb Exp $ */ | 1 | /* $OpenBSD: ocsp_cl.c,v 1.20 2021/11/24 19:27:03 tb Exp $ */ |
2 | /* Written by Tom Titchener <Tom_Titchener@groove.net> for the OpenSSL | 2 | /* Written by Tom Titchener <Tom_Titchener@groove.net> for the OpenSSL |
3 | * project. */ | 3 | * project. */ |
4 | 4 | ||
@@ -86,7 +86,7 @@ OCSP_request_add0_id(OCSP_REQUEST *req, OCSP_CERTID *cid) | |||
86 | if ((one = OCSP_ONEREQ_new()) == NULL) | 86 | if ((one = OCSP_ONEREQ_new()) == NULL) |
87 | goto err; | 87 | goto err; |
88 | if (req != NULL) { | 88 | if (req != NULL) { |
89 | if (!sk_OCSP_ONEREQ_push(req->tbsRequest->requestList, one)) | 89 | if (!sk_OCSP_ONEREQ_push(req->tbsRequest->requestList, one)) |
90 | goto err; | 90 | goto err; |
91 | } | 91 | } |
92 | OCSP_CERTID_free(one->reqCert); | 92 | OCSP_CERTID_free(one->reqCert); |