summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2014-06-07 12:00:31 -0700
committerGuy Harris <guy@alum.mit.edu>2014-06-07 19:10:25 +0000
commit39cdb98606b821136aabc6d60b2e1ce4846aab8b (patch)
tree3e3abeda39963cac3b6a64a183c30256a6f8b459
parent39ca18d71b85d0b99c0fd3c5edab48fa217d7d34 (diff)
downloadwireshark-39cdb98606b821136aabc6d60b2e1ce4846aab8b.tar.gz
PEEKREMOTE packets don't appear to have Atheros padding.
Call the without-Atheros-padding dissector for the payload. Fixes bug 10139. Change-Id: I883bf4e58899aa78b07fae63d8c0376a31bda444 Reviewed-on: https://code.wireshark.org/review/2027 Reviewed-by: Guy Harris <guy@alum.mit.edu>
-rw-r--r--epan/dissectors/packet-peekremote.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-peekremote.c b/epan/dissectors/packet-peekremote.c
index be4e32e913..c198dfdaa9 100644
--- a/epan/dissectors/packet-peekremote.c
+++ b/epan/dissectors/packet-peekremote.c
@@ -573,7 +573,7 @@ proto_reg_handoff_peekremote(void)
{
dissector_handle_t peekremote_handle;
- ieee80211_handle = find_dissector("wlan_datapad_withfcs");
+ ieee80211_handle = find_dissector("wlan_withfcs");
peekremote_handle = new_create_dissector_handle(dissect_peekremote_legacy, proto_peekremote);
dissector_add_uint("udp.port", 5000, peekremote_handle);