summaryrefslogtreecommitdiff
path: root/crypto/ct/ct_x509v3.c
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2017-04-07 20:58:50 -0400
committerRich Salz <rsalz@openssl.org>2017-05-22 08:03:22 -0400
commit8dcb87fdbaba2be3e75fdaf16382c827165d2af5 (patch)
tree6438727a706c994436e5f478a7926784b431b896 /crypto/ct/ct_x509v3.c
parent8368a3abb8a2f5d1bde3ba891b4ce2b082e4f512 (diff)
downloadopenssl-new-8dcb87fdbaba2be3e75fdaf16382c827165d2af5.tar.gz
This is an int
Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/3149)
Diffstat (limited to 'crypto/ct/ct_x509v3.c')
-rw-r--r--crypto/ct/ct_x509v3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/ct/ct_x509v3.c b/crypto/ct/ct_x509v3.c
index 7e370f47d9..db46f80ada 100644
--- a/crypto/ct/ct_x509v3.c
+++ b/crypto/ct/ct_x509v3.c
@@ -32,7 +32,7 @@ static int i2r_SCT_LIST(X509V3_EXT_METHOD *method, STACK_OF(SCT) *sct_list,
static int set_sct_list_source(STACK_OF(SCT) *s, sct_source_t source) {
if (s != NULL) {
- size_t i;
+ int i;
for (i = 0; i < sk_SCT_num(s); i++) {
int res = SCT_set_source(
sk_SCT_value(s, i), SCT_SOURCE_X509V3_EXTENSION);