aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilipp Maier <pmaier@sysmocom.de>2023-09-22 11:47:58 +0200
committerPhilipp Maier <pmaier@sysmocom.de>2023-09-22 11:52:58 +0200
commit7a2d9591176a6e5bc2637945cc0bd94f1946a54d (patch)
tree0030fcc68d2067383c98b527a4ae6db8c66da632
parente76efaa85343d2bb55c4966a542c2afc0e46aace (diff)
PCUIF_Types: fix record PCUIF_data_cnf
The msg_id in record record PCUIF_data_cnf lacks the variant BYTEORDER(last), (which we use in record PCUIF_agch and record PCUIF_pch). This causes the msg_id to be sent back in the wrong endieness format. Related: OS#5927 Change-Id: I69c1ccc37dac1e06ebe29484c767014954ff55e2
-rw-r--r--library/PCUIF_Types.ttcn4
1 files changed, 3 insertions, 1 deletions
diff --git a/library/PCUIF_Types.ttcn b/library/PCUIF_Types.ttcn
index b6a1bfa2..6be45df2 100644
--- a/library/PCUIF_Types.ttcn
+++ b/library/PCUIF_Types.ttcn
@@ -111,7 +111,9 @@ type record PCUIF_data {
type record PCUIF_data_cnf {
PCUIF_Sapi sapi,
OCT4 msg_id
-} with { variant "" };
+} with {
+ variant (msg_id) "BYTEORDER(last)"
+};
type record PCUIF_rts_req {
PCUIF_Sapi sapi,