recognize atheros information elements

This commit is contained in:
Sam Leffler 2004-12-31 19:37:02 +00:00
parent 24ea6505cb
commit 881cb7c4d1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=139492

View File

@ -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;