aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-catapult-dct2000.c
diff options
context:
space:
mode:
authorDarien Spencer <cusneud@mail.com>2017-06-18 22:54:55 -0700
committerAnders Broman <a.broman58@gmail.com>2017-06-19 23:50:23 +0000
commit0dada943c0671637c29dab86b82fd07cc48ca849 (patch)
tree7992727281611e9fe395e168a5ea4f91e2fac704 /epan/dissectors/packet-catapult-dct2000.c
parentbef90e1493815a07e619c4cd0da6a7d65321c26e (diff)
RLC: Renamed U-RNTI to UE ID
The 'U-RNTI' field in RLC Info struct is both used in the code and shown in the UI as a generic unique 'UE ID' (not specificly U-RNTI, although sometimes it is) This commit renames the field to fit it's usage. Change-Id: Ib42b8ed5192fe60c9a164d6d225634be53708c66 Reviewed-on: https://code.wireshark.org/review/22225 Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-catapult-dct2000.c')
-rw-r--r--epan/dissectors/packet-catapult-dct2000.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-catapult-dct2000.c b/epan/dissectors/packet-catapult-dct2000.c
index ab18b65b7c..a0474d1d5c 100644
--- a/epan/dissectors/packet-catapult-dct2000.c
+++ b/epan/dissectors/packet-catapult-dct2000.c
@@ -1697,7 +1697,7 @@ static void attach_rlc_info(packet_info *pinfo, guint32 urnti, guint8 rbid,
/* Fill in struct fields for first (only) PDU in this frame */
/* Urnti. Just use UEId */
- p_rlc_info->urnti[0] = urnti;
+ p_rlc_info->ueid[0] = urnti;
/* ciphered (off by default) */
p_rlc_info->ciphered[0] = FALSE;