diff options
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libcrypto/x509/x509_addr.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/lib/libcrypto/x509/x509_addr.c b/src/lib/libcrypto/x509/x509_addr.c index 95f179174d..d23981b033 100644 --- a/src/lib/libcrypto/x509/x509_addr.c +++ b/src/lib/libcrypto/x509/x509_addr.c | |||
@@ -147,6 +147,17 @@ static const ASN1_TEMPLATE IPAddrBlocks_item_tt = { | |||
147 | .item = &IPAddressFamily_it, | 147 | .item = &IPAddressFamily_it, |
148 | }; | 148 | }; |
149 | 149 | ||
150 | /* XXX: maybe special? */ | ||
151 | static const ASN1_ITEM IPAddrBlocks_it = { | ||
152 | .itype = ASN1_ITYPE_PRIMITIVE, | ||
153 | .utype = -1, | ||
154 | .templates = &IPAddrBlocks_item_tt, | ||
155 | .tcount = 0, | ||
156 | .funcs = NULL, | ||
157 | .size = 0, | ||
158 | .sname = "IPAddrBlocks", | ||
159 | }; | ||
160 | |||
150 | IPAddressRange * | 161 | IPAddressRange * |
151 | d2i_IPAddressRange(IPAddressRange **a, const unsigned char **in, long len) | 162 | d2i_IPAddressRange(IPAddressRange **a, const unsigned char **in, long len) |
152 | { | 163 | { |