summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2013-08-16 04:57:48 +0000
committerAnders Broman <anders.broman@ericsson.com>2013-08-16 04:57:48 +0000
commit3e69184794fc5526341e2c06858b0d9cff8efc02 (patch)
tree9c9ebd7e814ce2efa42a9f9f77e954ed8d8aab2d /plugins
parent1e8f7d92241278590c1a49ed567119825ba5637e (diff)
downloadwireshark-3e69184794fc5526341e2c06858b0d9cff8efc02.tar.gz
From Wido Kelling:
wrong interpretation of first byte in userdata of profinet data. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9039 svn path=/trunk/; revision=51389
Diffstat (limited to 'plugins')
-rw-r--r--plugins/profinet/packet-dcerpc-pn-io.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/profinet/packet-dcerpc-pn-io.c b/plugins/profinet/packet-dcerpc-pn-io.c
index 4d354591b9..5d263c2813 100644
--- a/plugins/profinet/packet-dcerpc-pn-io.c
+++ b/plugins/profinet/packet-dcerpc-pn-io.c
@@ -9241,7 +9241,8 @@ dissect_PNIO_C_SDU(tvbuff_t *tvb, int offset,
/* this will be one or more DataItems followed by an optional GAP and RTCPadding */
/* as we don't have the required context information to dissect the specific DataItems, */
/* this will be tricky :-( */
- offset = dissect_PNIO_IOxS(tvb, offset, pinfo, data_tree, drep, hf_pn_io_ioxs);
+ /* actual: there may be an IOxS but most case there isn't so better display a data-stream */
+ /* offset = dissect_PNIO_IOxS(tvb, offset, pinfo, data_tree, drep, hf_pn_io_ioxs); */
offset = dissect_pn_user_data(tvb, offset, pinfo, tree, tvb_length_remaining(tvb, offset),
"User Data (including GAP and RTCPadding)");