From 4fa77da8a51e06e3025ca19519d6c8778c834c55 Mon Sep 17 00:00:00 2001 From: tb Date: Tue, 28 Dec 2021 17:25:46 +0000 Subject: [PATCH] Use an accessor in X509v3_addr_inherits() --- lib/libcrypto/x509/x509_addr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/libcrypto/x509/x509_addr.c b/lib/libcrypto/x509/x509_addr.c index ff0524bb16a..e448c4ae695 100644 --- a/lib/libcrypto/x509/x509_addr.c +++ b/lib/libcrypto/x509/x509_addr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: x509_addr.c,v 1.36 2021/12/28 16:40:13 tb Exp $ */ +/* $OpenBSD: x509_addr.c,v 1.37 2021/12/28 17:25:46 tb Exp $ */ /* * Contributed to the OpenSSL Project by the American Registry for * Internet Numbers ("ARIN"). @@ -1500,7 +1500,7 @@ X509v3_addr_inherits(IPAddrBlocks *addr) for (i = 0; i < sk_IPAddressFamily_num(addr); i++) { IPAddressFamily *f = sk_IPAddressFamily_value(addr, i); - if (f->ipAddressChoice->type == IPAddressChoice_inherit) + if (IPAddressFamily_inheritance(f) != NULL) return 1; } -- 2.20.1