From: Michael Tremer Date: Mon, 20 Oct 2025 14:29:29 +0000 (+0000) Subject: sources: hostapd: Don't use colons X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=da5c1aa73594e8899821faab79baf7b9907b05f2;p=telemetry.git sources: hostapd: Don't use colons Signed-off-by: Michael Tremer --- 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]);