aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2016-01-17 17:16:17 -0800
committerGuy Harris <guy@alum.mit.edu>2016-01-18 01:17:25 +0000
commit5fe11fb75964d8e0d87fb73d99aa5f69066b9e8f (patch)
treeac46e726d6d85080d46d8c2aa8b5c77b732f3b74 /epan/dissectors
parenta5cc29b245e2509d5451caa653e0cf83bee56782 (diff)
Call the "without FCS" version of the Ethernet dissector.
At least in the sample captures attached to bug 2631, the encapsulated Ethernet frames don't include the FCS. Bug: 9933 Change-Id: Ie14b87020c44d739173e5da9fc58a91924f38dfe Reviewed-on: https://code.wireshark.org/review/13377 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'epan/dissectors')
-rw-r--r--epan/dissectors/packet-batadv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-batadv.c b/epan/dissectors/packet-batadv.c
index 3a06f6f210..aefac07410 100644
--- a/epan/dissectors/packet-batadv.c
+++ b/epan/dissectors/packet-batadv.c
@@ -5050,7 +5050,7 @@ void proto_reg_handoff_batadv(void)
batman_handle = create_dissector_handle(dissect_batadv_plugin, proto_batadv_plugin);
data_handle = find_dissector("data");
- eth_handle = find_dissector("eth");
+ eth_handle = find_dissector("eth_withoutfcs");
batadv_tap = register_tap("batman");
batadv_follow_tap = register_tap("batman_follow");