From: Jay Satiro Date: Wed, 10 May 2023 18:03:30 +0000 (-0400) Subject: openssl: fix indent X-Git-Tag: curl-8_1_0~16 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2cc1c93f45ce948c2e1122e53d8360740a853ce2;p=thirdparty%2Fcurl.git openssl: fix indent --- diff --git a/lib/vtls/openssl.c b/lib/vtls/openssl.c index 366fc22ffb..970b37efd1 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