From 2daa2f16732f9e1026dcd165a075f22287c2185a Mon Sep 17 00:00:00 2001 From: "Alfred E. Heggestad" <114750+alfredh@users.noreply.github.com> Date: Tue, 9 Apr 2024 13:55:12 +0200 Subject: [PATCH] test: udp_listen NULL --- test/udp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/udp.c b/test/udp.c index 22a8d3243..31dadcda3 100644 --- a/test/udp.c +++ b/test/udp.c @@ -164,7 +164,7 @@ int test_udp(void) if (err) goto out; - err = udp_listen(&ut->usc, &ut->cli, udp_recv_client, ut); + err = udp_listen(&ut->usc, NULL, udp_recv_client, ut); err |= udp_listen(&ut->uss, &ut->srv, udp_recv_server, ut); if (err) goto out;