Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2fa7a98f authored by Dan Williams's avatar Dan Williams Committed by John W. Linville
Browse files

libertas: fix WPA adhoc network creation



Oddly enough, the firmware's JOIN/START commands don't appear to have
any facility for setting custom IEs, thus the started adhoc network
doesn't advertise its WPA capability in the beacon.  Whee!

Signed-off-by: default avatarDan Williams <dcbw@redhat.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 822ac03a
Loading
Loading
Loading
Loading
+5 −3
Original line number Original line Diff line number Diff line
@@ -711,11 +711,13 @@ static int lbs_adhoc_start(struct lbs_private *priv,


	/* set capability info */
	/* set capability info */
	tmpcap = WLAN_CAPABILITY_IBSS;
	tmpcap = WLAN_CAPABILITY_IBSS;
	if (assoc_req->secinfo.wep_enabled) {
	if (assoc_req->secinfo.wep_enabled ||
		lbs_deb_join("ADHOC_START: WEP enabled, setting privacy on\n");
	    assoc_req->secinfo.WPAenabled ||
	    assoc_req->secinfo.WPA2enabled) {
		lbs_deb_join("ADHOC_START: WEP/WPA enabled, privacy on\n");
		tmpcap |= WLAN_CAPABILITY_PRIVACY;
		tmpcap |= WLAN_CAPABILITY_PRIVACY;
	} else
	} else
		lbs_deb_join("ADHOC_START: WEP disabled, setting privacy off\n");
		lbs_deb_join("ADHOC_START: WEP disabled, privacy off\n");


	cmd.capability = cpu_to_le16(tmpcap);
	cmd.capability = cpu_to_le16(tmpcap);