From: tb Date: Fri, 22 Dec 2023 13:42:18 +0000 (+0000) Subject: Replace check_chain_extensions() with its x509_vfy_ wrapper X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=c046cfbb6d7220846c49e7105f527fd149c69448;p=openbsd Replace check_chain_extensions() with its x509_vfy_ wrapper --- diff --git a/lib/libcrypto/x509/x509_vfy.c b/lib/libcrypto/x509/x509_vfy.c index ba5f92c87b7..674ef1df04c 100644 --- a/lib/libcrypto/x509/x509_vfy.c +++ b/lib/libcrypto/x509/x509_vfy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: x509_vfy.c,v 1.131 2023/12/22 13:36:20 tb Exp $ */ +/* $OpenBSD: x509_vfy.c,v 1.132 2023/12/22 13:42:18 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -123,7 +123,6 @@ static int null_callback(int ok, X509_STORE_CTX *e); static int check_issued(X509_STORE_CTX *ctx, X509 *subject, X509 *issuer); static X509 *find_issuer(X509_STORE_CTX *ctx, STACK_OF(X509) *sk, X509 *x, int allow_expired); -static int check_chain_extensions(X509_STORE_CTX *ctx); static int check_name_constraints(X509_STORE_CTX *ctx); static int check_trust(X509_STORE_CTX *ctx); static int check_cert(X509_STORE_CTX *ctx, STACK_OF(X509) *chain, int depth); @@ -528,7 +527,7 @@ X509_verify_cert_legacy(X509_STORE_CTX *ctx) goto end; /* We have the chain complete: now we need to check its purpose */ - ok = check_chain_extensions(ctx); + ok = x509_vfy_check_chain_extensions(ctx); if (!ok) goto end; @@ -809,11 +808,6 @@ end: #endif } -static int -check_chain_extensions(X509_STORE_CTX *ctx) { - return x509_vfy_check_chain_extensions(ctx); -} - static int check_name_constraints(X509_STORE_CTX *ctx) {