summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/lib/libcrypto/x509/x509_vpm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/x509/x509_vpm.c b/src/lib/libcrypto/x509/x509_vpm.c
index 7266808f24..8a5eaa1328 100644
--- a/src/lib/libcrypto/x509/x509_vpm.c
+++ b/src/lib/libcrypto/x509/x509_vpm.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: x509_vpm.c,v 1.49 2025/03/19 16:29:37 tb Exp $ */ 1/* $OpenBSD: x509_vpm.c,v 1.50 2025/03/19 16:30:44 tb Exp $ */
2/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL 2/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
3 * project 2004. 3 * project 2004.
4 */ 4 */
@@ -723,10 +723,10 @@ X509_VERIFY_PARAM_lookup(const char *name)
723 723
724 limit = sizeof(default_table) / sizeof(X509_VERIFY_PARAM); 724 limit = sizeof(default_table) / sizeof(X509_VERIFY_PARAM);
725 for (i = 0; i < limit; i++) { 725 for (i = 0; i < limit; i++) {
726 if (strcmp(default_table[i].name, name) == 0) { 726 if (strcmp(default_table[i].name, name) == 0)
727 return &default_table[i]; 727 return &default_table[i];
728 }
729 } 728 }
729
730 return NULL; 730 return NULL;
731} 731}
732LCRYPTO_ALIAS(X509_VERIFY_PARAM_lookup); 732LCRYPTO_ALIAS(X509_VERIFY_PARAM_lookup);