aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--docbook/release-notes.asciidoc2
-rw-r--r--epan/dissectors/packet-ieee80211.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/docbook/release-notes.asciidoc b/docbook/release-notes.asciidoc
index 379af9702b..20106a7e97 100644
--- a/docbook/release-notes.asciidoc
+++ b/docbook/release-notes.asciidoc
@@ -41,7 +41,7 @@ since version 2.6.0:
* TShark now supports the `-G elastic-mapping` option which generates an ElasticSearch mapping file.
* The “Capture Information” dialog has been added back (wsbuglink:12004[]).
-* The Ethernet dissector no longer validates the frame check sequence (checksum) by default.
+* The Ethernet and IEEE 802.11 dissectors no longer validate the frame check sequence (checksum) by default.
* The TCP dissector gained a new “Reassemble out-of-order segments” preference
to fix dissection and decryption issues in case TCP segments are received
out-of-order. See the User’s Guide, chapter _TCP Reassembly_ for details.
diff --git a/epan/dissectors/packet-ieee80211.c b/epan/dissectors/packet-ieee80211.c
index a21e5d00ca..1cca821627 100644
--- a/epan/dissectors/packet-ieee80211.c
+++ b/epan/dissectors/packet-ieee80211.c
@@ -103,7 +103,7 @@ static gboolean wlan_subdissector = TRUE;
static gboolean wlan_check_fcs = FALSE;
/* Check the FCS checksum */
-static gboolean wlan_check_checksum = TRUE;
+static gboolean wlan_check_checksum = FALSE;
/* Ignore vendor-specific HT elements */
static gboolean wlan_ignore_draft_ht = FALSE;