diff options
author | Rich Salz <rsalz@akamai.com> | 2015-05-03 00:42:29 +0200 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2015-05-03 14:50:34 +0200 |
commit | 8332f91cc0db4955259bca9f9138b5eff94d6e8c (patch) | |
tree | e536cb930bc9b88630bd515e7b2a80ca7a61c822 | |
parent | Add OSSL_NELEM macro. (diff) | |
download | openssl-8332f91cc0db4955259bca9f9138b5eff94d6e8c.tar.xz openssl-8332f91cc0db4955259bca9f9138b5eff94d6e8c.zip |
fix various typo's
https://github.com/openssl/openssl/pull/176 (CHANGES)
https://rt.openssl.org/Ticket/Display.html?id=3545 (objects.txt)
https://rt.openssl.org/Ticket/Display.html?id=3796 (verify.pod)
Reviewed-by: Tim Hudson <tjh@openssl.org>
-rw-r--r-- | CHANGES | 2 | ||||
-rw-r--r-- | crypto/objects/obj_dat.h | 4 | ||||
-rw-r--r-- | crypto/objects/objects.txt | 2 | ||||
-rw-r--r-- | doc/apps/verify.pod | 4 | ||||
-rw-r--r-- | include/openssl/obj_mac.h | 2 |
5 files changed, 7 insertions, 7 deletions
@@ -7606,7 +7606,7 @@ des-cbc 3624.96k 5258.21k 5530.91k 5624.30k 5628.26k [Bodo Moeller; problems reported by Anders Gertz <gertz@epact.se>] *) Correct util/mkdef.pl to be selective about disabled algorithms. - Previously, it would create entries for disableed algorithms no + Previously, it would create entries for disabled algorithms no matter what. [Richard Levitte] diff --git a/crypto/objects/obj_dat.h b/crypto/objects/obj_dat.h index bf5496e7fe..c8102a0116 100644 --- a/crypto/objects/obj_dat.h +++ b/crypto/objects/obj_dat.h @@ -2164,7 +2164,7 @@ static const ASN1_OBJECT nid_objs[NUM_NID]={ &(lvalues[5107]),0}, {"subjectDirectoryAttributes","X509v3 Subject Directory Attributes", NID_subject_directory_attributes,3,&(lvalues[5115]),0}, -{"issuingDistributionPoint","X509v3 Issuing Distrubution Point", +{"issuingDistributionPoint","X509v3 Issuing Distribution Point", NID_issuing_distribution_point,3,&(lvalues[5118]),0}, {"certificateIssuer","X509v3 Certificate Issuer", NID_certificate_issuer,3,&(lvalues[5121]),0}, @@ -3654,7 +3654,7 @@ static const unsigned int ln_objs[NUM_LN]={ 857, /* "X509v3 Freshest CRL" */ 748, /* "X509v3 Inhibit Any Policy" */ 86, /* "X509v3 Issuer Alternative Name" */ -770, /* "X509v3 Issuing Distrubution Point" */ +770, /* "X509v3 Issuing Distribution Point" */ 83, /* "X509v3 Key Usage" */ 666, /* "X509v3 Name Constraints" */ 403, /* "X509v3 No Revocation Available" */ diff --git a/crypto/objects/objects.txt b/crypto/objects/objects.txt index 2bcaf83aae..2fc85b4bc4 100644 --- a/crypto/objects/objects.txt +++ b/crypto/objects/objects.txt @@ -748,7 +748,7 @@ id-ce 24 : invalidityDate : Invalidity Date !Cname delta-crl id-ce 27 : deltaCRL : X509v3 Delta CRL Indicator !Cname issuing-distribution-point -id-ce 28 : issuingDistributionPoint : X509v3 Issuing Distrubution Point +id-ce 28 : issuingDistributionPoint : X509v3 Issuing Distribution Point !Cname certificate-issuer id-ce 29 : certificateIssuer : X509v3 Certificate Issuer !Cname name-constraints diff --git a/doc/apps/verify.pod b/doc/apps/verify.pod index d422913c08..9407faedaf 100644 --- a/doc/apps/verify.pod +++ b/doc/apps/verify.pod @@ -11,7 +11,7 @@ B<openssl> B<verify> [B<-CApath directory>] [B<-attime timestamp>] [B<-check_ss_sig>] -[B<-crlfile file>] +[B<-CRLfile file>] [B<-crl_check>] [B<-crl_check_all>] [B<-explicit_policy>] @@ -76,7 +76,7 @@ current system time. B<timestamp> is the number of seconds since Verify the signature on the self-signed root CA. This is disabled by default because it doesn't add any security. -=item B<-crlfile file> +=item B<-CRLfile file> File containing one or more CRL's (in PEM format) to load. diff --git a/include/openssl/obj_mac.h b/include/openssl/obj_mac.h index 9d373968cb..e750a85d5c 100644 --- a/include/openssl/obj_mac.h +++ b/include/openssl/obj_mac.h @@ -2354,7 +2354,7 @@ #define OBJ_delta_crl OBJ_id_ce,27L #define SN_issuing_distribution_point "issuingDistributionPoint" -#define LN_issuing_distribution_point "X509v3 Issuing Distrubution Point" +#define LN_issuing_distribution_point "X509v3 Issuing Distribution Point" #define NID_issuing_distribution_point 770 #define OBJ_issuing_distribution_point OBJ_id_ce,28L |