]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
networkctl: change bitrate format from 'bps' to 'Bps'
authorAnton Tiurin <atiurin@proton.me>
Tue, 16 Sep 2025 20:58:56 +0000 (21:58 +0100)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Fri, 26 Sep 2025 05:41:20 +0000 (14:41 +0900)
src/network/networkctl-status-link.c

index 5d54b8607f77fe652615bee4ddde22eca3a86c54..62f57c2b215d52379d3b769079dc3010f5efb109 100644 (file)
@@ -768,7 +768,7 @@ static int link_status_one(
                 if (r < 0)
                         return table_log_add_error(r);
 
-                r = table_add_cell_stringf(table, NULL, "%sbps/%sbps",
+                r = table_add_cell_stringf(table, NULL, "%sBps/%sBps",
                                            FORMAT_BYTES_FULL(info->tx_bitrate, 0),
                                            FORMAT_BYTES_FULL(info->rx_bitrate, 0));
                 if (r < 0)