From 1963dad67e3d33f1329a0f4b1ab3311666b17af8 Mon Sep 17 00:00:00 2001 From: Taruntej Kanakamalla Date: Thu, 14 Nov 2024 16:43:59 +0530 Subject: [PATCH] threadshare: net: correct the member name in ip_mreq missed changing to `ifr_interface` after switching to the libc crate Part-of: --- generic/threadshare/src/net.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generic/threadshare/src/net.rs b/generic/threadshare/src/net.rs index d9b4a28f..51028122 100644 --- a/generic/threadshare/src/net.rs +++ b/generic/threadshare/src/net.rs @@ -213,7 +213,7 @@ pub mod imp { imr_multiaddr: in_addr { s_addr: u32::from_ne_bytes(addr.octets()), }, - imr_address: in_addr { + imr_interface: in_addr { s_addr: u32::from_ne_bytes(ip_addr.octets()), }, };