From f6dc0ef9002e27d3c51f63b047417c0d34bf301c Mon Sep 17 00:00:00 2001 From: Christian B Date: Sat, 20 Jan 2018 16:33:05 +0100 Subject: [PATCH] Radiotap FCS flag fix * The driver marks all frames as containing the Frame Check Sequence at the end. This confuses Wireshark because the FCS field is stripped before the frame is released on the monitor interface. --- core/rtw_recv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/rtw_recv.c b/core/rtw_recv.c index 8bd46aa..83ed24e 100755 --- a/core/rtw_recv.c +++ b/core/rtw_recv.c @@ -3608,7 +3608,7 @@ static sint fill_radiotap_hdr(_adapter *padapter, union recv_frame *precvframe) hdr_buf[rt_len] |= IEEE80211_RADIOTAP_F_FRAG; /* always append FCS */ - hdr_buf[rt_len] |= IEEE80211_RADIOTAP_F_FCS; + /* hdr_buf[rt_len] |= IEEE80211_RADIOTAP_F_FCS; */ if (0) hdr_buf[rt_len] |= IEEE80211_RADIOTAP_F_DATAPAD;