svn commit: r206766 - head/sys/dev/ipw

Bernhard Schmidt bschmidt at FreeBSD.org
Sat Apr 17 18:17:25 UTC 2010


Author: bschmidt
Date: Sat Apr 17 18:17:25 2010
New Revision: 206766
URL: http://svn.freebsd.org/changeset/base/206766

Log:
  Use iv_appie_wpa, with this commit WPA works again.
  
  Approved by:	rpaulo (mentor)

Modified:
  head/sys/dev/ipw/if_ipw.c

Modified: head/sys/dev/ipw/if_ipw.c
==============================================================================
--- head/sys/dev/ipw/if_ipw.c	Sat Apr 17 18:16:14 2010	(r206765)
+++ head/sys/dev/ipw/if_ipw.c	Sat Apr 17 18:17:25 2010	(r206766)
@@ -2266,8 +2266,8 @@ ipw_assoc(struct ieee80211com *ic, struc
 	if (error != 0)
 		goto done;
 
-	if (vap->iv_appie_assocreq != NULL) {
-		struct ieee80211_appie *ie = vap->iv_appie_assocreq;
+	if (vap->iv_appie_wpa != NULL) {
+		struct ieee80211_appie *ie = vap->iv_appie_wpa;
 		error = ipw_setwpaie(sc, ie->ie_data, ie->ie_len);
 		if (error != 0)
 			goto done;


More information about the svn-src-head mailing list