diff options
author | Jonathan McCrohan <jmccrohan@gmail.com> | 2018-02-18 21:31:59 +0000 |
---|---|---|
committer | Jonathan McCrohan <jmccrohan@gmail.com> | 2018-02-18 21:31:59 +0000 |
commit | e5837c658b65cea29dc0c96811dda305382a8262 (patch) | |
tree | e73e9beb6579ad7810b5641ad4c5df99817b40e4 /iw_nl80211.c | |
parent | 55b5c68b79748789dd2f374e21db9e883f4b8d84 (diff) | |
parent | 1fc41b776f712f321c1f355d391c6a5eaf79ebfa (diff) | |
download | wavemon-e5837c658b65cea29dc0c96811dda305382a8262.tar.gz |
Update upstream source from tag 'upstream/0.8.2'
Update to upstream version '0.8.2'
with Debian dir 99713d8c3f398f90062f7a8b1d890dd7de10fea5
Diffstat (limited to '')
-rw-r--r-- | iw_nl80211.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/iw_nl80211.c b/iw_nl80211.c index 5b9c562..339e58b 100644 --- a/iw_nl80211.c +++ b/iw_nl80211.c @@ -128,7 +128,7 @@ void parse_bitrate(struct nlattr *bitrate_attr, char *buf, int buflen) rate = nla_get_u16(rinfo[NL80211_RATE_INFO_BITRATE]); if (rate > 0) pos += snprintf(pos, buflen - (pos - buf), - "%d.%d MBit/s", rate / 10, rate % 10); + "%d.%d Mbit/s", rate / 10, rate % 10); if (rinfo[NL80211_RATE_INFO_MCS]) pos += snprintf(pos, buflen - (pos - buf), |