Date: Sat, 2 Jun 2007 09:28:23 GMT From: Andrew Thompson <thompsa@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 120762 for review Message-ID: <200706020928.l529SNV7048386@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=120762 Change 120762 by thompsa@thompsa_heff on 2007/06/02 09:28:23 Fix a case where we transition to ASSOC and then fail to do anything further. Affected files ... .. //depot/projects/wifi/sys/dev/iwi/if_iwi.c#37 edit Differences ... ==== //depot/projects/wifi/sys/dev/iwi/if_iwi.c#37 (text+ko) ==== @@ -971,6 +971,13 @@ ieee80211_cancel_scan(ic); break; case IEEE80211_S_ASSOC: + /* + * If we are not transitioning from AUTH the resend the + * association request. + */ + if (ic->ic_state != IEEE80211_S_AUTH) + iwi_assoc(ic); + break; default: break; }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200706020928.l529SNV7048386>