summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorjsing <>2026-04-01 14:39:11 +0000
committerjsing <>2026-04-01 14:39:11 +0000
commit89eb797db1e499a83313d47457a8fa9fe9272e8c (patch)
tree8a830689cf40753bd0e3db0db4c1269cc85ce995 /src
parent67ef63bdfc3a504381a2ca266dcaf63bae2c5bf5 (diff)
downloadopenbsd-89eb797db1e499a83313d47457a8fa9fe9272e8c.tar.gz
openbsd-89eb797db1e499a83313d47457a8fa9fe9272e8c.tar.bz2
openbsd-89eb797db1e499a83313d47457a8fa9fe9272e8c.zip
Adjust depth check to match change in verifier.
Diffstat (limited to 'src')
-rw-r--r--src/regress/lib/libcrypto/x509/verify.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/regress/lib/libcrypto/x509/verify.c b/src/regress/lib/libcrypto/x509/verify.c
index 2b5298a63e..77cdbfd915 100644
--- a/src/regress/lib/libcrypto/x509/verify.c
+++ b/src/regress/lib/libcrypto/x509/verify.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: verify.c,v 1.13 2026/03/31 13:39:48 jsing Exp $ */ 1/* $OpenBSD: verify.c,v 1.14 2026/04/01 14:39:11 jsing Exp $ */
2/* 2/*
3 * Copyright (c) 2020 Joel Sing <jsing@openbsd.org> 3 * Copyright (c) 2020 Joel Sing <jsing@openbsd.org>
4 * Copyright (c) 2020-2021 Bob Beck <beck@openbsd.org> 4 * Copyright (c) 2020-2021 Bob Beck <beck@openbsd.org>
@@ -469,7 +469,7 @@ struct verify_cert_test verify_cert_tests[] = {
469 .id = "14b", 469 .id = "14b",
470 .want_chains = 0, 470 .want_chains = 0,
471 .want_error = X509_V_ERR_CERT_CHAIN_TOO_LONG, 471 .want_error = X509_V_ERR_CERT_CHAIN_TOO_LONG,
472 .want_error_depth = 32, 472 .want_error_depth = 31,
473 .want_legacy_error = 0, 473 .want_legacy_error = 0,
474 .want_legacy_error_depth = 0, 474 .want_legacy_error_depth = 0,
475 .failing = 1, 475 .failing = 1,