From c64928e8e0211edf2ccfa628dfa41e5bd62ef8ae Mon Sep 17 00:00:00 2001 From: Toni Uhlig Date: Sat, 6 Jul 2019 01:31:29 +0200 Subject: fixed format specifier issues Signed-off-by: Toni Uhlig --- src/pkt.c | 2 +- src/ptunnel.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pkt.c b/src/pkt.c index c8eeba2..473737e 100644 --- a/src/pkt.c +++ b/src/pkt.c @@ -76,7 +76,7 @@ void handle_packet(char *buf, unsigned bytes, int is_pcap, struct sockaddr_in *a if (bytes < sizeof(icmp_echo_packet_t)+sizeof(ping_tunnel_pkt_t)) pt_log(kLog_verbose, "Skipping this packet - too short. " - "Expect: %d+%d = %d ; Got: %d\n", + "Expect: %lu+%lu = %lu ; Got: %u\n", sizeof(icmp_echo_packet_t), sizeof(ping_tunnel_pkt_t), sizeof(icmp_echo_packet_t) + diff --git a/src/ptunnel.c b/src/ptunnel.c index c63c57a..9af8db7 100644 --- a/src/ptunnel.c +++ b/src/ptunnel.c @@ -702,7 +702,7 @@ void* pt_proxy(void *args) { for (cur = chain; cur; cur = cur->next) { in_addr.s_addr = cur->dst_ip; if (cur->last_activity + kAutomatic_close_timeout < now) { - pt_log(kLog_info, "Dropping tunnel to %s:%d due to inactivity.\n", inet_ntoa(in_addr), cur->dst_port, cur->id_no); + pt_log(kLog_info, "Dropping tunnel %u to %s:%u due to inactivity.\n", cur->id_no, inet_ntoa(in_addr), cur->dst_port); cur->should_remove = 1; continue; } -- cgit v1.2.3