From 24a1707e33dc7fdbc623c72093a8561adbe2e8b3 Mon Sep 17 00:00:00 2001 From: Rob Austein Date: Thu, 20 Jul 2006 20:00:30 +0000 Subject: Start IPAddrBlocks, clean up some lingering typos in ASIdentifiers. svn path=/openssl/trunk/crypto/x509v3/v3_addr.c; revision=28 --- openssl/trunk/crypto/x509v3/v3_asid.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'openssl/trunk/crypto/x509v3/v3_asid.c') 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; -- cgit v1.2.3