diff options
author | Peter Hessler <phessler@cvs.openbsd.org> | 2018-09-10 08:27:14 +0000 |
---|---|---|
committer | Peter Hessler <phessler@cvs.openbsd.org> | 2018-09-10 08:27:14 +0000 |
commit | 1e9cbc56b8b9e8864472fec9c3768fc66b031cd2 (patch) | |
tree | e50ac94aee9315e66db5cc0a1cf9c5f61dd84149 /sys/net80211 | |
parent | 80a7fc3823f330d390f5f0c54f1b4859c9c07f15 (diff) |
use the correct essid when switching during the ioctl path
pointed out by stsp@
Diffstat (limited to 'sys/net80211')
-rw-r--r-- | sys/net80211/ieee80211_ioctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net80211/ieee80211_ioctl.c b/sys/net80211/ieee80211_ioctl.c index 65c6948414e..7f51c998dc5 100644 --- a/sys/net80211/ieee80211_ioctl.c +++ b/sys/net80211/ieee80211_ioctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ieee80211_ioctl.c,v 1.65 2018/09/09 20:32:55 phessler Exp $ */ +/* $OpenBSD: ieee80211_ioctl.c,v 1.66 2018/09/10 08:27:13 phessler Exp $ */ /* $NetBSD: ieee80211_ioctl.c,v 1.15 2004/05/06 02:58:16 dyoung Exp $ */ /*- @@ -475,7 +475,7 @@ ieee80211_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data) if (ieee80211_add_ess(ic, &join) == 0) ic->ic_flags |= IEEE80211_F_AUTO_JOIN; } - ieee80211_set_ess(ic, ic->ic_des_essid); + ieee80211_set_ess(ic, join.i_nwid, join.i_len); error = ENETRESET; break; case SIOCG80211JOIN: |