aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-mac-lte.c
diff options
context:
space:
mode:
authorMartin Mathieson <martin.r.mathieson@googlemail.com>2010-06-18 07:07:55 +0000
committerMartin Mathieson <martin.r.mathieson@googlemail.com>2010-06-18 07:07:55 +0000
commit97df849b982c8e037ada71e0840308a9a28056e6 (patch)
treee532c910f8623a1248cdda71adcb3f55474bb382 /epan/dissectors/packet-mac-lte.c
parentcd4cfa05ac9bd7b4a3538781f60b8b2729fd4ebf (diff)
Add new strings/dissector function for signalling RRC messages that will add
lte_rrc root to the protocol tree. Makes filtering on call signalling easier. TODO: same for other RRC entry points... svn path=/trunk/; revision=33251
Diffstat (limited to 'epan/dissectors/packet-mac-lte.c')
-rw-r--r--epan/dissectors/packet-mac-lte.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-mac-lte.c b/epan/dissectors/packet-mac-lte.c
index ca11fb5d42..2b7b55d914 100644
--- a/epan/dissectors/packet-mac-lte.c
+++ b/epan/dissectors/packet-mac-lte.c
@@ -2644,10 +2644,10 @@ static void dissect_ulsch_or_dlsch(tvbuff_t *tvb, packet_info *pinfo, proto_tree
/* Get appropriate dissector handle */
volatile dissector_handle_t protocol_handle = 0;
if (p_mac_lte_info->direction == DIRECTION_UPLINK) {
- protocol_handle = find_dissector("lte-rrc.ul.ccch");
+ protocol_handle = find_dissector("lte_rrc.ul_ccch");
}
else {
- protocol_handle = find_dissector("lte-rrc.dl.ccch");
+ protocol_handle = find_dissector("lte_rrc.dl_ccch");
}
/* Hide raw view of bytes */