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>2015-06-29 19:37:55 +0300
committerAdam Langley <agl@google.com>2015-07-16 05:03:03 +0300
commit207bb4391f0551bd51115031bc48a8f2f97ba980 (patch)
tree614ea2d23050879a8e8fd2ebaae5b3e27f7a9dc6 /include/openssl/err.h
parent3570d73bf1261340c0c3039553cb4ef690f3d8ba (diff)
ERR_LIB_USER should be the last error.
Consumers sometimes use ERR_LIB_USER + <favorite number> instead of ERR_get_next_error_library. To avoid causing them grief, keep ERR_LIB_USER last. Change-Id: Id19ae7836c41d5b156044bd20d417daf643bdda2 Reviewed-on: https://boringssl-review.googlesource.com/5290 Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'include/openssl/err.h')
-rw-r--r--include/openssl/err.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/openssl/err.h b/include/openssl/err.h
index bf1cf479..0a90b0e3 100644
--- a/include/openssl/err.h
+++ b/include/openssl/err.h
@@ -430,8 +430,8 @@ enum {
ERR_LIB_HMAC,
ERR_LIB_DIGEST,
ERR_LIB_CIPHER,
- ERR_LIB_USER,
ERR_LIB_HKDF,
+ ERR_LIB_USER,
ERR_NUM_LIBS
};