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 /include/openssl/asn1.h
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 'include/openssl/asn1.h')
-rw-r--r--include/openssl/asn1.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/openssl/asn1.h b/include/openssl/asn1.h
index 014b0598..a64572c2 100644
--- a/include/openssl/asn1.h
+++ b/include/openssl/asn1.h
@@ -1160,7 +1160,7 @@ OPENSSL_EXPORT int BIO_asn1_get_suffix(BIO *b, asn1_ps_func **psuffix, asn1_ps_f
#define ASN1_R_NOT_ASCII_FORMAT 110
#define ASN1_R_NOT_ENOUGH_DATA 111
#define ASN1_R_MSTRING_NOT_UNIVERSAL 112
-#define ASN1_R_UNKOWN_FORMAT 113
+#define ASN1_R_UNKNOWN_FORMAT 113
#define ASN1_R_UNKNOWN_SIGNATURE_ALGORITHM 114
#define ASN1_R_BAD_PASSWORD_READ 115
#define ASN1_R_BAD_OBJECT_HEADER 116
@@ -1247,7 +1247,6 @@ OPENSSL_EXPORT int BIO_asn1_get_suffix(BIO *b, asn1_ps_func **psuffix, asn1_ps_f
#define ASN1_R_DECODE_ERROR 197
#define ASN1_R_NON_HEX_CHARACTERS 198
#define ASN1_R_UNSUPPORTED_ANY_DEFINED_BY_TYPE 199
-#define ASN1_R_UNKNOWN_FORMAT 200
#define ASN1_R_EXPECTING_AN_ASN1_SEQUENCE 201
#define ASN1_R_UNKNOWN_MESSAGE_DIGEST_ALGORITHM 202
#define ASN1_R_STRING_TOO_SHORT 203