diff options
author | sam <sam@FreeBSD.org> | 2004-12-31 19:37:02 +0000 |
---|---|---|
committer | sam <sam@FreeBSD.org> | 2004-12-31 19:37:02 +0000 |
commit | f06f95dd373089b6df47b1a29717187b91a4c114 (patch) | |
tree | 6025ffc2e9c0ab17a48b1561727d8a10139f2240 /sbin | |
parent | 702123653dd361188bfbcb58c94a441e1d68653e (diff) | |
download | FreeBSD-src-f06f95dd373089b6df47b1a29717187b91a4c114.zip FreeBSD-src-f06f95dd373089b6df47b1a29717187b91a4c114.tar.gz |
recognize atheros information elements
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/ifconfig/ifieee80211.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sbin/ifconfig/ifieee80211.c b/sbin/ifconfig/ifieee80211.c index 9c24eb3..07b86c9 100644 --- a/sbin/ifconfig/ifieee80211.c +++ b/sbin/ifconfig/ifieee80211.c @@ -750,6 +750,8 @@ printies(const u_int8_t *vp, int ielen, int maxcols) printie(" WPA", vp, 2+vp[1], maxcols); else if (iswmeoui(vp)) printie(" WME", vp, 2+vp[1], maxcols); + else if (isatherosoui(vp)) + printie(" ATH", vp, 2+vp[1], maxcols); else printie(" VEN", vp, 2+vp[1], maxcols); break; |