aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/epan
diff options
context:
space:
mode:
authorbasakkal <basakkalfa@gmail.com>2018-09-26 23:35:25 -0700
committerAnders Broman <a.broman58@gmail.com>2018-09-27 15:44:44 +0000
commit4f44ba31b5539bd288600649015f95de9a3a89a6 (patch)
treeef81fe65898ae78d44d4b3afd1799a19ef604b81 /plugins/epan
parent3d2094c17195893579a0d4a74eaefd8679328643 (diff)
PROFINET: DynamicFramePacking subframes are decoded.
Last version of Wireshark can not decode DynamicFramePacking subframes. Changes are implemented to decode subframes. Change-Id: Ifba011418a5211d9599c48d37597a16733dfafa8 Reviewed-on: https://code.wireshark.org/review/29882 Petri-Dish: Anders Broman <a.broman58@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'plugins/epan')
-rw-r--r--plugins/epan/profinet/packet-dcerpc-pn-io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/epan/profinet/packet-dcerpc-pn-io.c b/plugins/epan/profinet/packet-dcerpc-pn-io.c
index 1206b0bc69..528703e3fc 100644
--- a/plugins/epan/profinet/packet-dcerpc-pn-io.c
+++ b/plugins/epan/profinet/packet-dcerpc-pn-io.c
@@ -11114,7 +11114,7 @@ dissect_PNIO_heur(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
/* frame id must be in valid range (cyclic Real-Time, class=3) */
if ((u16FrameID >= 0x0100 && u16FrameID <= 0x06FF) || /* RTC3 non redundant */
(u16FrameID >= 0x700 && u16FrameID <= 0x0fff)) { /* RTC3 redundant */
- dissect_PNIO_C_SDU(tvb, 0, pinfo, tree, drep);
+ dissect_CSF_SDU_heur(tvb, pinfo, tree, data);
return TRUE;
}