Loading apps/enc.c +2 −2 Original line number Diff line number Diff line Loading @@ -548,8 +548,8 @@ int enc_main(int argc, char **argv) ret = 0; if (verbose) { BIO_printf(bio_err, "bytes read :%8"PRIu64"\n", BIO_number_read(in)); BIO_printf(bio_err, "bytes written:%8"PRIu64"\n", BIO_number_written(out)); BIO_printf(bio_err, "bytes read :%8ju\n", BIO_number_read(in)); BIO_printf(bio_err, "bytes written:%8ju\n", BIO_number_written(out)); } end: ERR_print_errors(bio_err); Loading apps/s_cb.c +2 −2 Original line number Diff line number Diff line Loading @@ -1042,8 +1042,8 @@ static char *hexencode(const unsigned char *data, size_t len) int ilen = (int) outlen; if (outlen < len || ilen < 0 || outlen != (size_t)ilen) { BIO_printf(bio_err, "%s: %" PRIu64 "-byte buffer too large to hexencode\n", opt_getprog(), (uint64_t)len); BIO_printf(bio_err, "%s: %zu-byte buffer too large to hexencode\n", opt_getprog(), len); exit(1); } cp = out = app_malloc(ilen, "TLSA hex data buffer"); Loading apps/s_client.c +2 −2 Original line number Diff line number Diff line Loading @@ -2901,8 +2901,8 @@ static void print_stuff(BIO *bio, SSL *s, int full) #endif BIO_printf(bio, "---\nSSL handshake has read %" PRIu64 " bytes and written %" PRIu64 " bytes\n", "---\nSSL handshake has read %ju bytes " "and written %ju bytes\n", BIO_number_read(SSL_get_rbio(s)), BIO_number_written(SSL_get_wbio(s))); } Loading Loading
apps/enc.c +2 −2 Original line number Diff line number Diff line Loading @@ -548,8 +548,8 @@ int enc_main(int argc, char **argv) ret = 0; if (verbose) { BIO_printf(bio_err, "bytes read :%8"PRIu64"\n", BIO_number_read(in)); BIO_printf(bio_err, "bytes written:%8"PRIu64"\n", BIO_number_written(out)); BIO_printf(bio_err, "bytes read :%8ju\n", BIO_number_read(in)); BIO_printf(bio_err, "bytes written:%8ju\n", BIO_number_written(out)); } end: ERR_print_errors(bio_err); Loading
apps/s_cb.c +2 −2 Original line number Diff line number Diff line Loading @@ -1042,8 +1042,8 @@ static char *hexencode(const unsigned char *data, size_t len) int ilen = (int) outlen; if (outlen < len || ilen < 0 || outlen != (size_t)ilen) { BIO_printf(bio_err, "%s: %" PRIu64 "-byte buffer too large to hexencode\n", opt_getprog(), (uint64_t)len); BIO_printf(bio_err, "%s: %zu-byte buffer too large to hexencode\n", opt_getprog(), len); exit(1); } cp = out = app_malloc(ilen, "TLSA hex data buffer"); Loading
apps/s_client.c +2 −2 Original line number Diff line number Diff line Loading @@ -2901,8 +2901,8 @@ static void print_stuff(BIO *bio, SSL *s, int full) #endif BIO_printf(bio, "---\nSSL handshake has read %" PRIu64 " bytes and written %" PRIu64 " bytes\n", "---\nSSL handshake has read %ju bytes " "and written %ju bytes\n", BIO_number_read(SSL_get_rbio(s)), BIO_number_written(SSL_get_wbio(s))); } Loading