aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-fp_hint.c
diff options
context:
space:
mode:
authorDarien Spencer <cusneud@mail.com>2017-06-17 19:03:11 -0700
committerPascal Quantin <pascal.quantin@gmail.com>2017-06-19 13:43:20 +0000
commit31ffb58eb0db57df45f1f8e45afb759251982793 (patch)
treeb0a9a80556436459b7a4a1c9332880581347423f /epan/dissectors/packet-fp_hint.c
parent9634710cdb58456376ca17a299b7e7b99c307e4d (diff)
[UMTS RLC] Rename proto variable
To match the recently renamed file name. Change-Id: Id784b955ec96a52a5f380d415094dce81e1774d5 Reviewed-on: https://code.wireshark.org/review/22222 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-fp_hint.c')
-rw-r--r--epan/dissectors/packet-fp_hint.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-fp_hint.c b/epan/dissectors/packet-fp_hint.c
index 3b99141ce3..d25763e783 100644
--- a/epan/dissectors/packet-fp_hint.c
+++ b/epan/dissectors/packet-fp_hint.c
@@ -37,7 +37,7 @@ void proto_reg_handoff_fp_hint(void);
static int proto_fp_hint = -1;
extern int proto_fp;
extern int proto_umts_mac;
-extern int proto_rlc;
+extern int proto_umts_rlc;
static int ett_fph = -1;
static int ett_fph_rb = -1;
@@ -154,14 +154,14 @@ static guint16 assign_rb_info(tvbuff_t *tvb, packet_info *pinfo, guint16 offset,
struct rlc_info *rlcinf;
macinf = (umts_mac_info *)p_get_proto_data(wmem_file_scope(), pinfo, proto_umts_mac, 0);
- rlcinf = (rlc_info *)p_get_proto_data(wmem_file_scope(), pinfo, proto_rlc, 0);
+ rlcinf = (rlc_info *)p_get_proto_data(wmem_file_scope(), pinfo, proto_umts_rlc, 0);
if (!macinf) {
macinf = wmem_new0(wmem_file_scope(), struct umts_mac_info);
p_add_proto_data(wmem_file_scope(), pinfo, proto_umts_mac, 0, macinf);
}
if (!rlcinf) {
rlcinf = wmem_new0(wmem_file_scope(), struct rlc_info);
- p_add_proto_data(wmem_file_scope(), pinfo, proto_rlc, 0, rlcinf);
+ p_add_proto_data(wmem_file_scope(), pinfo, proto_umts_rlc, 0, rlcinf);
}
while (i < rbcnt) {