Sophie

Sophie

distrib > Fedora > 18 > i386 > by-pkgid > c18b0846af22bff6675df05787199977 > files > 87

aircrack-ng-1.1-7.20130402svn.fc18.i686.rpm

diff -ur madwifi-r1713/ath/if_ath.c madwifi-r1713-patched/ath/if_ath.c
--- madwifi-r1713/ath/if_ath.c	2006-09-15 20:16:39.328125000 +0200
+++ madwifi-r1713-patched/ath/if_ath.c	2006-09-16 00:47:55.140625000 +0200
@@ -2253,6 +2253,7 @@
 ath_tx_startraw(struct net_device *dev, struct ath_buf *bf, struct sk_buff *skb) 
 {
 	struct ath_softc *sc = dev->priv;
+	struct ieee80211com *ic = &sc->sc_ic;
 	struct ath_hal *ah = sc->sc_ah;
 	struct ieee80211_phy_params *ph = (struct ieee80211_phy_params *) (skb->cb + sizeof(struct ieee80211_cb));
 	const HAL_RATE_TABLE *rt;
@@ -2269,7 +2270,11 @@
 	struct ieee80211_frame *wh; 
 	
 	wh = (struct ieee80211_frame *) skb->data;
-	try0 = ph->try0;
+	try0 = (ic->ic_opmode == IEEE80211_M_MONITOR) ? 1 : ph->try0;
+		/*
+		 * The retry value has to be patched to 1 when injecting,
+		 * otherwise the sequence number will be overwritten
+		 */
 	rt = sc->sc_currates;
 	txrate = dot11_to_ratecode(sc, rt, ph->rate0);
 	power = ph->power > 60 ? 60 : ph->power;