From 07e4a65c6531f89f40ce731f11090bc168df2576 Mon Sep 17 00:00:00 2001 From: tb <> Date: Tue, 9 Jan 2024 07:25:57 +0000 Subject: Fix copy-paste error that broke openssl-ruby and openssl regress Noticed by anton --- src/lib/libcrypto/x509/x509_vfy.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lib') diff --git a/src/lib/libcrypto/x509/x509_vfy.c b/src/lib/libcrypto/x509/x509_vfy.c index 3d6b68afee..ada8ec1248 100644 --- a/src/lib/libcrypto/x509/x509_vfy.c +++ b/src/lib/libcrypto/x509/x509_vfy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: x509_vfy.c,v 1.137 2024/01/08 10:06:50 tb Exp $ */ +/* $OpenBSD: x509_vfy.c,v 1.138 2024/01/09 07:25:57 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -2190,7 +2190,7 @@ x509_vfy_purpose_inherit(X509_STORE_CTX *ctx, int purpose, int trust) const X509_PURPOSE *purp; int purpose_idx; - if (purpose < X509_PURPOSE_MIN || purpose > X509_TRUST_MAX) { + if (purpose < X509_PURPOSE_MIN || purpose > X509_PURPOSE_MAX) { X509error(X509_R_UNKNOWN_PURPOSE_ID); return 0; } -- cgit v1.2.3-55-g6feb