From 6cb84f36c2a847181d7433ef9c825aef1128c4a9 Mon Sep 17 00:00:00 2001 From: Marcus Glocker Date: Sat, 5 Aug 2006 00:29:42 +0000 Subject: Replace one more dragonfly quirk by ether_sprintf(). Fixes debug output for AP rates. --- sys/dev/ic/acx.c | 4 ++-- 1 file 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 @@ -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; -- cgit v1.2.3