From 6f795d976cad49dacbe67173b50fd39098af618a Mon Sep 17 00:00:00 2001 From: Flamenco Date: Mon, 17 Feb 2025 08:15:09 -0500 Subject: [PATCH] Update control.rs Fix function name --- cyw43/src/control.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cyw43/src/control.rs b/cyw43/src/control.rs index 888cf4b90..f77b487e2 100644 --- a/cyw43/src/control.rs +++ b/cyw43/src/control.rs @@ -531,7 +531,7 @@ impl<'a> Control<'a> { } /// Retrieve the list of configured multicast hardware addresses. - pub async fn list_mulistcast_addresses(&mut self, result: &mut [[u8; 6]; 10]) -> usize { + pub async fn list_multicast_addresses(&mut self, result: &mut [[u8; 6]; 10]) -> usize { let mut buf = [0; 64]; self.get_iovar("mcast_list", &mut buf).await;