refresh patches, make madwifi-dfs compile on linux 2.4 again
[openwrt.git] / package / madwifi / patches / 123-ccmp_checks.patch
1 Index: madwifi-dfs-r3053/net80211/ieee80211_crypto_ccmp.c
2 ===================================================================
3 --- madwifi-dfs-r3053.orig/net80211/ieee80211_crypto_ccmp.c     2007-12-13 05:25:10.594229197 +0100
4 +++ madwifi-dfs-r3053/net80211/ieee80211_crypto_ccmp.c  2007-12-13 05:25:12.634345457 +0100
5 @@ -475,6 +475,9 @@
6         uint8_t *mic, *pos;
7         u_int space;
8  
9 +       if (ctx->cc_tfm == NULL)
10 +               return 0;
11 +
12         ctx->cc_vap->iv_stats.is_crypto_ccmp++;
13  
14         skb = skb0;
15 @@ -589,6 +592,9 @@
16         uint8_t *pos, *mic;
17         u_int space;
18  
19 +       if (ctx->cc_tfm == NULL)
20 +               return 0;
21 +
22         ctx->cc_vap->iv_stats.is_crypto_ccmp++;
23  
24         skb = skb0;