summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJay Satiro <raysatiro@yahoo.com>2023-05-10 14:03:30 -0400
committerJay Satiro <raysatiro@yahoo.com>2023-05-10 14:03:30 -0400
commit2cc1c93f45ce948c2e1122e53d8360740a853ce2 (patch)
tree1fe0a162c21789491bcaaa8417f7174a03a61caa
parent89756e87ee26a7f5a732201aa2e40f83ed7218ca (diff)
downloadcurl-2cc1c93f45ce948c2e1122e53d8360740a853ce2.tar.gz
openssl: fix indent
-rw-r--r--lib/vtls/openssl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/vtls/openssl.c b/lib/vtls/openssl.c
index 366fc22ff..970b37efd 100644
--- a/lib/vtls/openssl.c
+++ b/lib/vtls/openssl.c
@@ -1294,7 +1294,7 @@ int cert_stuff(struct Curl_easy *data,
/* SSL_CTX_use_certificate_chain_file() only works on PEM files */
cert_use_result = cert_blob ?
SSL_CTX_use_certificate_chain_blob(ctx, cert_blob, key_passwd) :
- SSL_CTX_use_certificate_chain_file(ctx, cert_file);
+ SSL_CTX_use_certificate_chain_file(ctx, cert_file);
if(cert_use_result != 1) {
failf(data,
"could not load PEM client certificate from %s, " OSSL_PACKAGE