From da5c1aa73594e8899821faab79baf7b9907b05f2 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Mon, 20 Oct 2025 14:29:29 +0000 Subject: [PATCH] sources: hostapd: Don't use colons Signed-off-by: Michael Tremer --- src/daemon/sources/hostapd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/daemon/sources/hostapd.c b/src/daemon/sources/hostapd.c index 85c42a8..314de83 100644 --- a/src/daemon/sources/hostapd.c +++ b/src/daemon/sources/hostapd.c @@ -88,7 +88,7 @@ static int hostapd_submit_station(td_ctx* ctx, hostapd_station* station) { return 0; // Format the address - r = td_string_format(address, "%02x:%02x:%02x:%02x:%02x:%02x", + r = td_string_format(address, "%02x%02x%02x%02x%02x%02x", station->address.ether_addr_octet[0], station->address.ether_addr_octet[1], station->address.ether_addr_octet[2], station->address.ether_addr_octet[3], station->address.ether_addr_octet[4], station->address.ether_addr_octet[5]); -- 2.47.3