From 64b4b561001c0a5018d0c7c4bc554b0ba614fd39 Mon Sep 17 00:00:00 2001 From: Sean Wei Date: Wed, 25 Mar 2020 11:24:21 +0800 Subject: [PATCH] Fix parameter in ui/net.c The 'net_send_query' function was use global varible 'packetsize' and ignoring 'packet_size' parameter. --- ui/net.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/net.c b/ui/net.c index 2b6aa85..830d4ab 100644 --- a/ui/net.c +++ b/ui/net.c @@ -175,7 +175,7 @@ static void net_send_query( int time_to_live = index + 1; send_probe_command(ctl, &packet_command_pipe, remoteaddress, - sourceaddress, packetsize, seq, time_to_live); + sourceaddress, packet_size, seq, time_to_live); } -- 2.47.2