PERFORCE change 120762 for review
Andrew Thompson
thompsa at FreeBSD.org
Sat Jun 2 09:28:25 UTC 2007
http://perforce.freebsd.org/chv.cgi?CH=120762
Change 120762 by thompsa at 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;
}
More information about the p4-projects
mailing list