diff options
author | Abhijeet Kolekar <abhijeet.kolekar@intel.com> | 2008-06-12 09:47:16 +0800 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-06-13 16:14:53 -0400 |
commit | 5c5f9664d5284d8542062fed39e1f19b80db7aa5 (patch) | |
tree | 8758c907137a22b4af2402683fbf9d7b7be2e939 /net/mac80211/wext.c | |
parent | e6340361f9c70e84312caed98c6e058ac6234e9b (diff) | |
download | op-kernel-dev-5c5f9664d5284d8542062fed39e1f19b80db7aa5.zip op-kernel-dev-5c5f9664d5284d8542062fed39e1f19b80db7aa5.tar.gz |
mac80211 : fix for iwconfig in ad-hoc mode
The patch checks interface status, if it is in IBSS_JOINED mode
show cell id it is associated with.
Signed-off-by: Abhijeet Kolekar <abhijeet.kolekar@intel.com>
Signed-off-by: Zhu Yi <yi.zhu@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/wext.c')
-rw-r--r-- | net/mac80211/wext.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/mac80211/wext.c b/net/mac80211/wext.c index a8bb8e3..6106cb7 100644 --- a/net/mac80211/wext.c +++ b/net/mac80211/wext.c @@ -496,7 +496,8 @@ static int ieee80211_ioctl_giwap(struct net_device *dev, sdata = IEEE80211_DEV_TO_SUB_IF(dev); if (sdata->vif.type == IEEE80211_IF_TYPE_STA || sdata->vif.type == IEEE80211_IF_TYPE_IBSS) { - if (sdata->u.sta.state == IEEE80211_ASSOCIATED) { + if (sdata->u.sta.state == IEEE80211_ASSOCIATED || + sdata->u.sta.state == IEEE80211_IBSS_JOINED) { ap_addr->sa_family = ARPHRD_ETHER; memcpy(&ap_addr->sa_data, sdata->u.sta.bssid, ETH_ALEN); return 0; |