Reviewed-by: Viktor Dukhovni <viktor@openssl.org>
* isn't available or did not define it, just go with hard-coded.
*/
# ifndef PRIu64
-# define PRIu64 "lu"
+# ifdef SIXTY_FOUR_BIT_LONG
+# define PRIu64 "lu"
+# else
+# define PRIu64 "llu"
+# endif
# endif
/* ossl_inline: portable inline definition usable in public headers */
char *data;
long datalen;
int ret, success = 0;
- size_t i;
+ long i;
ctx = SSL_CTX_new(DTLS_server_method());
if (ctx == NULL || peer == NULL)
SSL_set_wbio(ssl, outbio);
success = 1;
- for (i = 0; i < OSSL_NELEM(testpackets) && success; i++) {
+ for (i = 0; i < (long)OSSL_NELEM(testpackets) && success; i++) {
inbio = BIO_new_mem_buf((char *)testpackets[i].in,
testpackets[i].inlen);
if (inbio == NULL) {