diff options
author | Marcus Glocker <mglocker@cvs.openbsd.org> | 2006-08-05 00:29:42 +0000 |
---|---|---|
committer | Marcus Glocker <mglocker@cvs.openbsd.org> | 2006-08-05 00:29:42 +0000 |
commit | 6cb84f36c2a847181d7433ef9c825aef1128c4a9 (patch) | |
tree | b9977b893888a7f82ff7d72d7f3859b0d5febd0b /sys/dev/ic/acx.c | |
parent | 719fe20c49224583169d84b0afbdeb702c8161d4 (diff) |
Replace one more dragonfly quirk by ether_sprintf(). Fixes debug output
for AP rates.
Diffstat (limited to 'sys/dev/ic/acx.c')
-rw-r--r-- | sys/dev/ic/acx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/acx.c b/sys/dev/ic/acx.c index a5cf9578580..d11fe593bcb 100644 --- a/sys/dev/ic/acx.c +++ b/sys/dev/ic/acx.c @@ -1,4 +1,4 @@ -/* $OpenBSD: acx.c,v 1.17 2006/08/05 00:22:49 mglocker Exp $ */ +/* $OpenBSD: acx.c,v 1.18 2006/08/05 00:29:41 mglocker Exp $ */ /* * Copyright (c) 2006 Jonathan Gray <jsg@openbsd.org> @@ -1870,7 +1870,7 @@ acx_newstate(struct ieee80211com *ic, enum ieee80211_state nstate, int arg) for (i = 0; i < ni->ni_rates.rs_nrates; ++i) printf("%d ", ni->ni_rates.rs_rates[i]); ieee80211_print_essid(ni->ni_essid, ni->ni_esslen); - printf(" %6D\n", ni->ni_bssid, ":"); + printf(" %s\n", ether_sprintf(ni->ni_bssid)); #endif } break; |