Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Benjamin <davidben@chromium.org>2014-10-08 05:43:08 +0400
committerAdam Langley <agl@google.com>2014-10-10 01:03:42 +0400
commita87941ad17d4bb8790844b113aa078a723054ee1 (patch)
treef481b40e64d2c48b37433b60c38284b5e739254e /crypto/x509
parentb1659f597b48d3efdd3d56c97d14185439b910e5 (diff)
Remove misspelled error code.
One ASN1_R_UNKNOWN_FORMAT got mispelled into ASN1_R_UNKOWN_FORMAT and duplicated. Change-Id: If123ef848ffe68afa021f5f3e3fb08eac92c5f94 Reviewed-on: https://boringssl-review.googlesource.com/1911 Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'crypto/x509')
-rw-r--r--crypto/x509/asn1_gen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/x509/asn1_gen.c b/crypto/x509/asn1_gen.c
index bbdc1a38..6fcae7bf 100644
--- a/crypto/x509/asn1_gen.c
+++ b/crypto/x509/asn1_gen.c
@@ -375,7 +375,7 @@ static int asn1_cb(const char *elem, int len, void *bitstr)
arg->format = ASN1_GEN_FORMAT_BITLIST;
else
{
- OPENSSL_PUT_ERROR(X509, asn1_cb, ASN1_R_UNKOWN_FORMAT);
+ OPENSSL_PUT_ERROR(X509, asn1_cb, ASN1_R_UNKNOWN_FORMAT);
return -1;
}
break;