]> git.ipfire.org Git - telemetry.git/commitdiff
graphs: Bps -> bps
authorMichael Tremer <michael.tremer@ipfire.org>
Sun, 26 Oct 2025 16:44:20 +0000 (16:44 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Sun, 26 Oct 2025 16:44:20 +0000 (16:44 +0000)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
src/daemon/graphs/graph.h
src/daemon/graphs/hostapd-station-rate-info.c

index 8488e0b9dcff87aa9d8048d96b9925b1f4630140..43fb7a6eba44471ff5177a9f82938a8ca132a7e1 100644 (file)
        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 */
index 7a5c208b1f24d1e02e4cf280cdfc046e91be2cab..5f796aefa5e2d8f3d9da13789b6c25e79ced36a7 100644 (file)
@@ -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;
 }