diff options
author | Rob Austein <sra@hactrn.net> | 2006-07-20 20:00:30 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2006-07-20 20:00:30 +0000 |
commit | 24a1707e33dc7fdbc623c72093a8561adbe2e8b3 (patch) | |
tree | 34ec635a2c6f67f0b39b9e01dbd4a561eef5019f /openssl/trunk/crypto/x509v3/v3_asid.c | |
parent | 53025c43030ad66f05c497190e6ac491c79ef3c0 (diff) |
Start IPAddrBlocks, clean up some lingering typos in ASIdentifiers.
svn path=/openssl/trunk/crypto/x509v3/v3_addr.c; revision=28
Diffstat (limited to 'openssl/trunk/crypto/x509v3/v3_asid.c')
-rw-r--r-- | openssl/trunk/crypto/x509v3/v3_asid.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/openssl/trunk/crypto/x509v3/v3_asid.c b/openssl/trunk/crypto/x509v3/v3_asid.c index c1114465..9542bc77 100644 --- a/openssl/trunk/crypto/x509v3/v3_asid.c +++ b/openssl/trunk/crypto/x509v3/v3_asid.c @@ -40,19 +40,19 @@ ASN1_CHOICE(ASIdOrRange) = { ASN1_SIMPLE(ASIdOrRange, u.range, ASRange) } ASN1_CHOICE_END(ASIdOrRange) -ASN1_CHOICE(ASIdentiferChoice) = { - ASN1_SIMPLE(ASIdentiferChoice, u.inherit, ASN1_NULL), - ASN1_SEQUENCE_OF(ASIdentiferChoice, u.asIdsOrRanges, ASIdOrRange) -} ASN1_CHOICE_END(ASIdentiferChoice) +ASN1_CHOICE(ASIdentifierChoice) = { + ASN1_SIMPLE(ASIdentifierChoice, u.inherit, ASN1_NULL), + ASN1_SEQUENCE_OF(ASIdentifierChoice, u.asIdsOrRanges, ASIdOrRange) +} ASN1_CHOICE_END(ASIdentifierChoice) ASN1_SEQUENCE(ASIdentifiers) = { - ASN1_EXP_OPT(ASIdentifiers, asnum, ASIdentiferChoice, 0), - ASN1_EXP_OPT(ASIdentifiers, rdi, ASIdentiferChoice, 1) + ASN1_EXP_OPT(ASIdentifiers, asnum, ASIdentifierChoice, 0), + ASN1_EXP_OPT(ASIdentifiers, rdi, ASIdentifierChoice, 1) } ASN1_SEQUENCE_END(ASIdentifiers) IMPLEMENT_ASN1_FUNCTIONS(ASRange) IMPLEMENT_ASN1_FUNCTIONS(ASIdOrRange) -IMPLEMENT_ASN1_FUNCTIONS(ASIdentiferChoice) +IMPLEMENT_ASN1_FUNCTIONS(ASIdentifierChoice) IMPLEMENT_ASN1_FUNCTIONS(ASIdentifiers) /* @@ -61,7 +61,7 @@ IMPLEMENT_ASN1_FUNCTIONS(ASIdentifiers) * do almost all the work in i2r_ASIdentifierChoice(). */ -static int i2r_ASIdentifierChoice(BIO *out, ASIdentiferChoice *choice, int indent, const char *msg) +static int i2r_ASIdentifierChoice(BIO *out, ASIdentifierChoice *choice, int indent, const char *msg) { int i; char *s; |