From: tb Date: Tue, 28 Dec 2021 17:25:46 +0000 (+0000) Subject: Use an accessor in X509v3_addr_inherits() X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=4fa77da8a51e06e3025ca19519d6c8778c834c55;p=openbsd Use an accessor in X509v3_addr_inherits() --- 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; }