diff options
author | Matteo Croce <matteo@openwrt.org> | 2008-05-02 18:48:47 +0000 |
---|---|---|
committer | Matteo Croce <matteo@openwrt.org> | 2008-05-02 18:48:47 +0000 |
commit | 62abb0ce54e172ba644e3a0aa098a2fc067d720a (patch) | |
tree | e01bab1dc44da1b411d1f1b5c5d8b6a60f40142a /package/acx | |
parent | 614e8b069dbce82f21bcda92c317b901f92d3d73 (diff) | |
download | upstream-62abb0ce54e172ba644e3a0aa098a2fc067d720a.tar.gz upstream-62abb0ce54e172ba644e3a0aa098a2fc067d720a.tar.bz2 upstream-62abb0ce54e172ba644e3a0aa098a2fc067d720a.zip |
acx100 fix by nabcore
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11011 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/acx')
-rw-r--r-- | package/acx/patches/003-encrypt-broadcast-traffic.diff | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/package/acx/patches/003-encrypt-broadcast-traffic.diff b/package/acx/patches/003-encrypt-broadcast-traffic.diff new file mode 100644 index 0000000000..7fd59f2694 --- /dev/null +++ b/package/acx/patches/003-encrypt-broadcast-traffic.diff @@ -0,0 +1,14 @@ +--- acx-20080210/common.c.orig 2008-04-19 17:38:46.000000000 +0100 ++++ acx-20080210/common.c 2008-04-19 17:40:10.000000000 +0100 +@@ -4155,6 +4155,11 @@ + /* 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); |