From: Michael Tremer Date: Sun, 26 Oct 2025 16:44:20 +0000 (+0000) Subject: graphs: Bps -> bps X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=793d203a6312dbeb6de3f7ef6ffaffbb5e228388;p=telemetry.git graphs: Bps -> bps Signed-off-by: Michael Tremer --- diff --git a/src/daemon/graphs/graph.h b/src/daemon/graphs/graph.h index 8488e0b..43fb7a6 100644 --- a/src/daemon/graphs/graph.h +++ b/src/daemon/graphs/graph.h @@ -286,7 +286,7 @@ do { \ COMPUTE_BITS(args, FIELD_BITS(bytes), object, bytes); \ DRAW_AREA_WITH_LABEL(args, FIELD_BITS(bytes), object, color, label); \ - PRINT_CAMM(args, bytes, object, BPS, _("Bps")); \ + PRINT_CAMM(args, bytes, object, BPS, _("bps")); \ } while (0) #endif /* TELEMETRY_GRAPHS_GRAPH_H */ diff --git a/src/daemon/graphs/hostapd-station-rate-info.c b/src/daemon/graphs/hostapd-station-rate-info.c index 7a5c208..5f796ae 100644 --- a/src/daemon/graphs/hostapd-station-rate-info.c +++ b/src/daemon/graphs/hostapd-station-rate-info.c @@ -48,11 +48,11 @@ static int hostapd_station_rate_info_render(td_ctx* ctx, // Receive Rate DRAW_LINE2_WITH_LABEL(args, "rx_rate", object, COLOR_RX, _("Receive Rate")); - PRINT_CAMM(args, "rx_rate", object, BPS, _("Bps")); + PRINT_CAMM(args, "rx_rate", object, BPS, _("bps")); // Transmit Rate DRAW_LINE2_WITH_LABEL(args, "tx_rate", object, COLOR_TX, _("Transmit Rate")); - PRINT_CAMM(args, "tx_rate", object, BPS, _("Bps")); + PRINT_CAMM(args, "tx_rate", object, BPS, _("bps")); return 0; }