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-04-26 21:14:15 +0300
committerAdam Langley <agl@google.com>2015-05-05 21:48:01 +0300
commit9362b6e23546abdf29ab3e0caa8cc734c5afcbe4 (patch)
treed45ebf69bd58100b887ed834680c9502f76f3fd9 /ssl/ssl_cert.c
parentadcc39560e638d0e9866dac698d64370d1c0abef (diff)
Errors are uint32_t, not unsigned long.
Change-Id: Ic2339b771d949a555b8d05a3b24dc2e990b9d8d3 Reviewed-on: https://boringssl-review.googlesource.com/4555 Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'ssl/ssl_cert.c')
-rw-r--r--ssl/ssl_cert.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/ssl_cert.c b/ssl/ssl_cert.c
index a21256f6..fdab572a 100644
--- a/ssl/ssl_cert.c
+++ b/ssl/ssl_cert.c
@@ -867,7 +867,7 @@ int ssl_build_cert_chain(CERT *c, X509_STORE *chain_store, int flags) {
STACK_OF(X509) *chain = NULL, *untrusted = NULL;
X509 *x;
int i, rv = 0;
- unsigned long error;
+ uint32_t error;
if (!cpk->x509) {
OPENSSL_PUT_ERROR(SSL, ssl_build_cert_chain, SSL_R_NO_CERTIFICATE_SET);