aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-cops.c
diff options
context:
space:
mode:
authorstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2010-07-22 10:07:25 +0000
committerstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2010-07-22 10:07:25 +0000
commitf85533ebbe47899edb2e240d79b5dbd9c434d9f3 (patch)
treebaececdd090266a74b006449cea41a7165f5bf71 /epan/dissectors/packet-cops.c
parentc47fbb7fb498af0cda026410f777d8a44290f876 (diff)
Corrected length check for I05 Downstream Service.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@33615 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-cops.c')
-rw-r--r--epan/dissectors/packet-cops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-cops.c b/epan/dissectors/packet-cops.c
index a4d89121f3..ab772363c6 100644
--- a/epan/dissectors/packet-cops.c
+++ b/epan/dissectors/packet-cops.c
@@ -5891,7 +5891,7 @@ cops_analyze_packetcable_mm_obj(tvbuff_t *tvb, packet_info *pinfo, proto_tree *t
cops_ugs_with_activity_detection(tvb, tree, object_len, offset);
break;
case PCMM_DOWNSTREAM_SERVICE:
- if (object_len == 44 || object_len == 80 || object_len == 116)
+ if (object_len == 48 || object_len == 88 || object_len == 128)
cops_downstream_service_i04_i05(tvb, tree, object_len, offset, TRUE);
else if (object_len == 40 || object_len == 72 || object_len == 104)
cops_downstream_service_i04_i05(tvb, tree, object_len, offset, FALSE);