diff options
author | Dr. Stephen Henson <steve@openssl.org> | 2015-11-05 17:14:17 +0100 |
---|---|---|
committer | Dr. Stephen Henson <steve@openssl.org> | 2015-11-08 15:03:50 +0100 |
commit | 90d9e49a4b2344a7a313eed70becb6cd3bf152e9 (patch) | |
tree | c1974ca27a0be655c619a0b0867a735225ffde16 /test | |
parent | Fix compilation problems with SCTP (diff) | |
download | openssl-90d9e49a4b2344a7a313eed70becb6cd3bf152e9.tar.xz openssl-90d9e49a4b2344a7a313eed70becb6cd3bf152e9.zip |
Use uint32_t and int32_t for SSL_CIPHER structure.
Reviewed-by: Andy Polyakov <appro@openssl.org>
Diffstat (limited to 'test')
-rw-r--r-- | test/ssltest.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ssltest.c b/test/ssltest.c index e951788d3a..c46c211031 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; |