diff options
author | Job Snijders <job@cvs.openbsd.org> | 2021-09-02 21:47:51 +0000 |
---|---|---|
committer | Job Snijders <job@cvs.openbsd.org> | 2021-09-02 21:47:51 +0000 |
commit | e7714cf57c83bb825081cf63a46d1fff9bbed7d7 (patch) | |
tree | a3a3585aa1337a078324c502972bef1d00d1b9c5 /lib/libcrypto | |
parent | 834bb7d7b67de849eab456b2845ef2b342b944a8 (diff) |
Unroll ASN1_ITEM_ref()
OK @tb
Diffstat (limited to 'lib/libcrypto')
-rw-r--r-- | lib/libcrypto/x509/x509_asid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libcrypto/x509/x509_asid.c b/lib/libcrypto/x509/x509_asid.c index f35d5e9cf68..f5b5d86384c 100644 --- a/lib/libcrypto/x509/x509_asid.c +++ b/lib/libcrypto/x509/x509_asid.c @@ -806,7 +806,7 @@ static void *v2i_ASIdentifiers(const struct v3_ext_method *method, const X509V3_EXT_METHOD v3_asid = { NID_sbgp_autonomousSysNum, /* nid */ 0, /* flags */ - ASN1_ITEM_ref(ASIdentifiers), /* template */ + &ASIdentifiers_it, /* template */ 0, 0, 0, 0, /* old functions, ignored */ 0, /* i2s */ 0, /* s2i */ |