aboutsummaryrefslogtreecommitdiffstats
path: root/package/acx/patches/003-encrypt-broadcast-traffic.diff
blob: 4743ab7b4bb374ef89b94bef360e9dde43c6fd79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--- a/common.c
+++ b/common.c
@@ -4155,6 +4155,11 @@ acx_l_process_data_frame_master(acx_devi
 		/* To_DS = 0, From_DS = 1 */
 		hdr->fc = WF_FC_FROMDSi + WF_FTYPE_DATAi;
 
+		/* Do we need to encrypt this? */
+		if (adev->wep_enabled) {
+			SET_BIT(hdr->fc, WF_FC_ISWEPi);
+		}
+
 		txbuf = acx_l_get_txbuf(adev, tx);
 		if (txbuf) {
 			len = RXBUF_BYTES_RCVD(adev, rxbuf);