From 5f9e5cd0879f9ad721ff3366149ed52259b02df0 Mon Sep 17 00:00:00 2001 From: Franco Fichtner Date: Wed, 27 Aug 2025 14:04:57 +0200 Subject: [PATCH] libfetch: meh --- lib/libfetch/common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libfetch/common.c b/lib/libfetch/common.c index 53ff3239560..ffcb5d23b9a 100644 --- a/lib/libfetch/common.c +++ b/lib/libfetch/common.c @@ -1172,7 +1172,7 @@ fetch_ssl_cb_verify_crt(int verified, X509_STORE_CTX *ctx) * we do make the utmost effort to supply a proper list of CRLs that * are required to verify the certificate(s) in question. */ - if (!verified && X509_STORE_CTX_get_error(ctx) ==X509_V_ERR_UNABLE_TO_GET_CRL) { + if (!verified && X509_STORE_CTX_get_error(ctx) == X509_V_ERR_UNABLE_TO_GET_CRL) { if (X509_STORE_CTX_get_error_depth(ctx) != 0) { if ((crt = X509_STORE_CTX_get_current_cert(ctx)) != NULL && (name = X509_get_subject_name(crt)) != NULL)