Skip to content

Commit 29abab9

Browse files
committed
skip unions in check
Signed-off-by: Markus Theil <[email protected]>
1 parent 86bf3e1 commit 29abab9

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

openssl-sys/src/handwritten/x509_sbgp.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ pub union IPAddressChoice_st_anon_union {
8282
#[cfg(ossl110)]
8383
pub struct IPAddressChoice {
8484
pub type_: c_int,
85-
pub u: IPAddressOrRanges_st_anon_union,
85+
pub u: IPAddressChoice_st_anon_union,
8686
}
8787

8888
#[repr(C)]

systest/build.rs

+2
Original file line numberDiff line numberDiff line change
@@ -120,9 +120,11 @@ fn main() {
120120
s == "DIST_POINT_NAME_st_anon_union" || // inline union
121121
s == "ASIdOrRange_st_anon_union" || // inline union
122122
s == "ASIdOrRange" ||
123+
s == "ASIdentifierChoice_st_anon_union" || // inline union
123124
s == "ASIdentifierChoice" ||
124125
s == "IPAddressOrRange_st_anon_union" || // inline union
125126
s == "IPAddressOrRange" ||
127+
s == "IPAddressChoice_st_anon_union" || // inline union
126128
s == "IPAddressChoice" ||
127129
s == "PKCS7_data" ||
128130
s == "ASN1_TYPE_value"

0 commit comments

Comments
 (0)