Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 21 Jul 2005 19:51:25 GMT
From:      Sam Leffler <sam@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 80695 for review
Message-ID:  <200507211951.j6LJpPSt012750@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=80695

Change 80695 by sam@sam_ebb on 2005/07/21 19:51:10

	correct min data frame size check; fragmented frames may not
	include an 802.3 header so the previous size caused some
	frames to be discarded

Affected files ...

.. //depot/projects/wifi/sys/net80211/ieee80211_crypto.c#13 edit

Differences ...

==== //depot/projects/wifi/sys/net80211/ieee80211_crypto.c#13 (text+ko) ====

@@ -543,7 +543,7 @@
 {
 #define	IEEE80211_WEP_HDRLEN	(IEEE80211_WEP_IVLEN + IEEE80211_WEP_KIDLEN)
 #define	IEEE80211_WEP_MINLEN \
-	(sizeof(struct ieee80211_frame) + ETHER_HDR_LEN + \
+	(sizeof(struct ieee80211_frame) + \
 	IEEE80211_WEP_HDRLEN + IEEE80211_WEP_CRCLEN)
 	struct ieee80211_key *k;
 	struct ieee80211_frame *wh;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200507211951.j6LJpPSt012750>