summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/x509v3
diff options
context:
space:
mode:
authorjsing <>2016-12-30 16:19:24 +0000
committerjsing <>2016-12-30 16:19:24 +0000
commit62206c334cfdab15b735c847201138f64f04d04e (patch)
tree5f8bf1a03b7362c3edd8874a61f806bc3a9f42e7 /src/lib/libcrypto/x509v3
parent47579588b6c174b33e3944f2a8ba900dcd98d094 (diff)
downloadopenbsd-62206c334cfdab15b735c847201138f64f04d04e.tar.gz
openbsd-62206c334cfdab15b735c847201138f64f04d04e.tar.bz2
openbsd-62206c334cfdab15b735c847201138f64f04d04e.zip
Expand ASN1_ITEM_rptr macros - no change in preprocessor output.
Diffstat (limited to 'src/lib/libcrypto/x509v3')
-rw-r--r--src/lib/libcrypto/x509v3/x509v3.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/x509v3/x509v3.h b/src/lib/libcrypto/x509v3/x509v3.h
index c0a543d406..0a8f66f917 100644
--- a/src/lib/libcrypto/x509v3/x509v3.h
+++ b/src/lib/libcrypto/x509v3/x509v3.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: x509v3.h,v 1.20 2016/12/27 16:05:57 jsing Exp $ */ 1/* $OpenBSD: x509v3.h,v 1.21 2016/12/30 16:19:24 jsing Exp $ */
2/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL 2/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
3 * project 1999. 3 * project 1999.
4 */ 4 */
@@ -391,7 +391,7 @@ struct ISSUING_DIST_POINT_st
391 X509V3_set_ctx(ctx, NULL, NULL, NULL, NULL, CTX_TEST) 391 X509V3_set_ctx(ctx, NULL, NULL, NULL, NULL, CTX_TEST)
392#define X509V3_set_ctx_nodb(ctx) (ctx)->db = NULL; 392#define X509V3_set_ctx_nodb(ctx) (ctx)->db = NULL;
393 393
394#define EXT_BITSTRING(nid, table) { nid, 0, ASN1_ITEM_ref(ASN1_BIT_STRING), \ 394#define EXT_BITSTRING(nid, table) { nid, 0, &ASN1_BIT_STRING_it, \
395 0,0,0,0, \ 395 0,0,0,0, \
396 0,0, \ 396 0,0, \
397 (X509V3_EXT_I2V)i2v_ASN1_BIT_STRING, \ 397 (X509V3_EXT_I2V)i2v_ASN1_BIT_STRING, \
@@ -399,7 +399,7 @@ struct ISSUING_DIST_POINT_st
399 NULL, NULL, \ 399 NULL, NULL, \
400 table} 400 table}
401 401
402#define EXT_IA5STRING(nid) { nid, 0, ASN1_ITEM_ref(ASN1_IA5STRING), \ 402#define EXT_IA5STRING(nid) { nid, 0, &ASN1_IA5STRING_it, \
403 0,0,0,0, \ 403 0,0,0,0, \
404 (X509V3_EXT_I2S)i2s_ASN1_IA5STRING, \ 404 (X509V3_EXT_I2S)i2s_ASN1_IA5STRING, \
405 (X509V3_EXT_S2I)s2i_ASN1_IA5STRING, \ 405 (X509V3_EXT_S2I)s2i_ASN1_IA5STRING, \