diff options
author | jsing <> | 2019-08-11 10:24:15 +0000 |
---|---|---|
committer | jsing <> | 2019-08-11 10:24:15 +0000 |
commit | 0c938f6425f6b4d1c43e4e81f5818e5fb6e4c536 (patch) | |
tree | def454eab9900de3d91763836df8726b72f95c88 | |
parent | aa695fbdbecb8a63a9f0f512222e04a0be2b9734 (diff) | |
download | openbsd-0c938f6425f6b4d1c43e4e81f5818e5fb6e4c536.tar.gz openbsd-0c938f6425f6b4d1c43e4e81f5818e5fb6e4c536.tar.bz2 openbsd-0c938f6425f6b4d1c43e4e81f5818e5fb6e4c536.zip |
Expand a new macro that tried to get away...
-rw-r--r-- | src/lib/libcrypto/cms/cms_asn1.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/lib/libcrypto/cms/cms_asn1.c b/src/lib/libcrypto/cms/cms_asn1.c index d492591d44..d8b55b31a6 100644 --- a/src/lib/libcrypto/cms/cms_asn1.c +++ b/src/lib/libcrypto/cms/cms_asn1.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: cms_asn1.c,v 1.15 2019/08/11 10:15:30 jsing Exp $ */ | 1 | /* $OpenBSD: cms_asn1.c,v 1.16 2019/08/11 10:24:15 jsing Exp $ */ |
2 | /* | 2 | /* |
3 | * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL | 3 | * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL |
4 | * project. | 4 | * project. |
@@ -1448,7 +1448,13 @@ const ASN1_ITEM CMS_Attributes_Verify_it = { | |||
1448 | 1448 | ||
1449 | 1449 | ||
1450 | static const ASN1_TEMPLATE CMS_ReceiptsFrom_ch_tt[] = { | 1450 | static const ASN1_TEMPLATE CMS_ReceiptsFrom_ch_tt[] = { |
1451 | ASN1_IMP_EMBED(CMS_ReceiptsFrom, d.allOrFirstTier, INT32, 0), | 1451 | { |
1452 | .flags = ASN1_TFLG_IMPLICIT, | ||
1453 | .tag = 0, | ||
1454 | .offset = offsetof(CMS_ReceiptsFrom, d.allOrFirstTier), | ||
1455 | .field_name = "d.allOrFirstTier", | ||
1456 | .item = &INT32_it, | ||
1457 | }, | ||
1452 | { | 1458 | { |
1453 | .flags = ASN1_TFLG_IMPLICIT | ASN1_TFLG_SEQUENCE_OF, | 1459 | .flags = ASN1_TFLG_IMPLICIT | ASN1_TFLG_SEQUENCE_OF, |
1454 | .tag = 1, | 1460 | .tag = 1, |