summaryrefslogtreecommitdiff
path: root/src/regress/lib/libcrypto/x509/rfc3779/rfc3779.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/regress/lib/libcrypto/x509/rfc3779/rfc3779.c')
-rw-r--r--src/regress/lib/libcrypto/x509/rfc3779/rfc3779.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/regress/lib/libcrypto/x509/rfc3779/rfc3779.c b/src/regress/lib/libcrypto/x509/rfc3779/rfc3779.c
index e6636bb06f..384d1441e4 100644
--- a/src/regress/lib/libcrypto/x509/rfc3779/rfc3779.c
+++ b/src/regress/lib/libcrypto/x509/rfc3779/rfc3779.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: rfc3779.c,v 1.4 2022/01/06 09:46:05 tb Exp $ */ 1/* $OpenBSD: rfc3779.c,v 1.5 2022/01/06 14:55:52 tb Exp $ */
2/* 2/*
3 * Copyright (c) 2021 Theo Buehler <tb@openbsd.org> 3 * Copyright (c) 2021 Theo Buehler <tb@openbsd.org>
4 * 4 *
@@ -471,6 +471,11 @@ struct build_addr_block_test_data {
471 int afi_len; 471 int afi_len;
472}; 472};
473 473
474/*
475 * This struct isn't const since the address arguments of
476 * X509v3_addr_add_{prefix,range}() aren't const and it's
477 * not worth working around this.
478 */
474struct build_addr_block_test_data build_addr_block_tests[] = { 479struct build_addr_block_test_data build_addr_block_tests[] = {
475 { 480 {
476 .description = "RFC 3779, Appendix B, example 1", 481 .description = "RFC 3779, Appendix B, example 1",