aboutsummaryrefslogtreecommitdiff
path: root/test/ssltest.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2015-11-05 16:14:17 +0000
committerDr. Stephen Henson <steve@openssl.org>2015-11-08 14:03:50 +0000
commit90d9e49a4b2344a7a313eed70becb6cd3bf152e9 (patch)
treec1974ca27a0be655c619a0b0867a735225ffde16 /test/ssltest.c
parentd99b0691d3a5d215e8d4dbe1b7224e066153fe2c (diff)
downloadopenssl-90d9e49a4b2344a7a313eed70becb6cd3bf152e9.zip
openssl-90d9e49a4b2344a7a313eed70becb6cd3bf152e9.tar.gz
openssl-90d9e49a4b2344a7a313eed70becb6cd3bf152e9.tar.bz2
Use uint32_t and int32_t for SSL_CIPHER structure.
Reviewed-by: Andy Polyakov <appro@openssl.org>
Diffstat (limited to 'test/ssltest.c')
-rw-r--r--test/ssltest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ssltest.c b/test/ssltest.c
index e951788..c46c211 100644
--- a/test/ssltest.c
+++ b/test/ssltest.c
@@ -3082,7 +3082,7 @@ static int do_test_cipherlist(void)
if (tci != NULL)
if (ci->id >= tci->id) {
fprintf(stderr, "testing SSLv3 cipher list order: ");
- fprintf(stderr, "failed %lx vs. %lx\n", ci->id, tci->id);
+ fprintf(stderr, "failed %x vs. %x\n", ci->id, tci->id);
return 0;
}
tci = ci;
@@ -3094,7 +3094,7 @@ static int do_test_cipherlist(void)
if (tci != NULL)
if (ci->id >= tci->id) {
fprintf(stderr, "testing TLSv1 cipher list order: ");
- fprintf(stderr, "failed %lx vs. %lx\n", ci->id, tci->id);
+ fprintf(stderr, "failed %x vs. %x\n", ci->id, tci->id);
return 0;
}
tci = ci;