aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-catapult-dct2000.c
diff options
context:
space:
mode:
authorMartin Mathieson <martin.r.mathieson@googlemail.com>2010-11-28 15:37:40 +0000
committerMartin Mathieson <martin.r.mathieson@googlemail.com>2010-11-28 15:37:40 +0000
commita6368260cc35472f172c6bc2fbe9b06b559a4694 (patch)
tree099232bd93fb9204f955e3da54620f11d8fb2714 /epan/dissectors/packet-catapult-dct2000.c
parent9ff65262563d91a17c23d1b71762317d342a7be3 (diff)
Fix calling of LTE RRC dissector for "rrc_lte_r8" frames.
svn path=/trunk/; revision=35050
Diffstat (limited to 'epan/dissectors/packet-catapult-dct2000.c')
-rw-r--r--epan/dissectors/packet-catapult-dct2000.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/epan/dissectors/packet-catapult-dct2000.c b/epan/dissectors/packet-catapult-dct2000.c
index 3142b1ec2b..f1eba2c580 100644
--- a/epan/dissectors/packet-catapult-dct2000.c
+++ b/epan/dissectors/packet-catapult-dct2000.c
@@ -665,7 +665,7 @@ static void dissect_rrc_lte(tvbuff_t *tvb, gint offset,
tvb_get_guint8(tvb, offset));
proto_tree_add_item(tree, hf_catapult_dct2000_lte_srbid,
tvb, offset, 1, FALSE);
-
+ offset++;
break;
case 1:
offset++;
@@ -673,6 +673,7 @@ static void dissect_rrc_lte(tvbuff_t *tvb, gint offset,
tvb_get_guint8(tvb, offset));
proto_tree_add_item(tree, hf_catapult_dct2000_lte_drbid,
tvb, offset, 1, FALSE);
+ offset++;
break;
default:
@@ -748,10 +749,10 @@ static void dissect_rrc_lte(tvbuff_t *tvb, gint offset,
/* Uplink channel types */
switch (logicalChannelType) {
case Channel_DCCH:
- protocol_handle = find_dissector("lte-rrc.ul.dcch");
+ protocol_handle = find_dissector("lte_rrc.ul_dcch");
break;
case Channel_CCCH:
- protocol_handle = find_dissector("lte-rrc.ul.ccch");
+ protocol_handle = find_dissector("lte_rrc.ul_ccch");
break;
default:
@@ -763,10 +764,10 @@ static void dissect_rrc_lte(tvbuff_t *tvb, gint offset,
/* Downlink channel types */
switch (logicalChannelType) {
case Channel_DCCH:
- protocol_handle = find_dissector("lte-rrc.dl.dcch");
+ protocol_handle = find_dissector("lte_rrc.dl_dcch");
break;
case Channel_CCCH:
- protocol_handle = find_dissector("lte-rrc.dl.ccch");
+ protocol_handle = find_dissector("lte_rrc.dl_ccch");
break;
case Channel_PCCH:
protocol_handle = find_dissector("lte-rrc.pcch");