aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-x11.c
diff options
context:
space:
mode:
authoretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2006-02-27 09:02:16 +0000
committeretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2006-02-27 09:02:16 +0000
commit62981fcca1ddbaae6c7c0599ab56e0068d6afbfa (patch)
treee5b0444a119a1326dcac6a0202e504857a012dbe /epan/dissectors/packet-x11.c
parente726a0f1ee64e803031120392d05ed10718d3bd8 (diff)
from dieder:
packet-x11 copy and past overlooked? test with 8 but substract to 4. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17420 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-x11.c')
-rw-r--r--epan/dissectors/packet-x11.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-x11.c b/epan/dissectors/packet-x11.c
index 28af1bbcde..06c3ffff30 100644
--- a/epan/dissectors/packet-x11.c
+++ b/epan/dissectors/packet-x11.c
@@ -4441,7 +4441,7 @@ dissect_x11_replies(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
* return.
*/
pinfo->desegment_offset = offset;
- pinfo->desegment_len = 4 - length_remaining;
+ pinfo->desegment_len = 8 - length_remaining;
return;
}
}