diff options
author | sam <sam@FreeBSD.org> | 2007-03-30 18:14:04 +0000 |
---|---|---|
committer | sam <sam@FreeBSD.org> | 2007-03-30 18:14:04 +0000 |
commit | 22fc818cc648b8554f6f0eb7231fa4b2e831ec1b (patch) | |
tree | c9c916cc38f9a127630449a90810812e41b92ae0 /sbin | |
parent | 67753b036c10a44b3206d9deff7f2f1434d12bad (diff) | |
download | FreeBSD-src-22fc818cc648b8554f6f0eb7231fa4b2e831ec1b.zip FreeBSD-src-22fc818cc648b8554f6f0eb7231fa4b2e831ec1b.tar.gz |
don't display ssid cloaking status as "ssid HIDE", use the cmd line
parameter like everything else
MFC after: 2 weeks
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/ifconfig/ifieee80211.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/ifconfig/ifieee80211.c b/sbin/ifconfig/ifieee80211.c index f68a0fd..a3e531c 100644 --- a/sbin/ifconfig/ifieee80211.c +++ b/sbin/ifconfig/ifieee80211.c @@ -1788,9 +1788,9 @@ ieee80211_status(int s) ireq.i_type = IEEE80211_IOC_HIDESSID; if (ioctl(s, SIOCG80211, &ireq) != -1) { if (ireq.i_val) - LINE_CHECK("ssid HIDE"); + LINE_CHECK("hidessid"); else if (verbose) - LINE_CHECK("ssid SHOW"); + LINE_CHECK("-hidessid"); } ireq.i_type = IEEE80211_IOC_APBRIDGE; |