Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src-draft/trunk]: src/sys/net80211 Use an alternative printing function so r...
details: https://anonhg.NetBSD.org/src-all/rev/7de08478d5e7
branches: trunk
changeset: 367338:7de08478d5e7
user: Nathanial Sloss <nat%netbsd.org@localhost>
date: Tue May 12 13:04:08 2020 +1000
description:
Use an alternative printing function so rates are displayed.
diffstat:
sys/net80211/ieee80211.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diffs (12 lines):
diff -r fc794db36960 -r 7de08478d5e7 sys/net80211/ieee80211.c
--- a/sys/net80211/ieee80211.c Tue May 12 13:03:17 2020 +1000
+++ b/sys/net80211/ieee80211.c Tue May 12 13:04:08 2020 +1000
@@ -2049,7 +2049,7 @@
if (mword == 0)
continue;
rate = ieee80211_media2rate(mword);
- aprint_debug("%s%d%sMbps", (i != 0 ? " " : ""),
+ ic_printf(ic, "%s%d%sMbps", (i != 0 ? " " : ""),
rate / 2, ((rate & 0x1) != 0 ? ".5" : ""));
}
aprint_debug("\n");
Home |
Main Index |
Thread Index |
Old Index