aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2006-02-27 09:02:16 +0000
committerAnders Broman <anders.broman@ericsson.com>2006-02-27 09:02:16 +0000
commit21a8f186bb6d46a2e0f75c9912ec1848fe83a51c (patch)
treee5b0444a119a1326dcac6a0202e504857a012dbe
parent0fc74ff3357fd9444963b8d22e730a6198a43a02 (diff)
from dieder:
packet-x11 copy and past overlooked? test with 8 but substract to 4. svn path=/trunk/; revision=17420
-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;
}
}