From 4aa2e44b8f8010fe0d3096d89c86f4b6238fc6ac Mon Sep 17 00:00:00 2001 From: Jeremy Harris Date: Sun, 8 Oct 2017 19:00:37 +0100 Subject: [PATCH] Fix debug_printf data size --- src/src/ip.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/src/ip.c b/src/src/ip.c index ee91293fa..d17c48216 100644 --- a/src/src/ip.c +++ b/src/src/ip.c @@ -262,7 +262,7 @@ if (fastopen_blob && tcp_fastopen_ok) { DEBUG(D_transport|D_v) debug_printf("non-TFO mode connection attempt to %s, %d data\n", - address, fastopen_blob->len); + address, (unsigned long)fastopen_blob->len); tcp_out_fastopen = fastopen_blob->len > 0 ? 2 : 1; } else if (errno == EINPROGRESS) /* expected if we had no cookie for peer */ @@ -294,8 +294,8 @@ else { legacy_connect: DEBUG(D_transport|D_v) if (fastopen_blob) - debug_printf("non-TFO mode connection attempt to %s, %d data\n", - address, fastopen_blob->len); + debug_printf("non-TFO mode connection attempt to %s, %lu data\n", + address, (unsigned long)fastopen_blob->len); if ((rc = connect(sock, s_ptr, s_len)) >= 0) if ( fastopen_blob && fastopen_blob->data && fastopen_blob->len && send(sock, fastopen_blob->data, fastopen_blob->len, 0) < 0) -- 2.30.2