lynxis lazus has uploaded this change for review. (
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/39253?usp=email )
Change subject: f_cellid_to_RAI: fix spaces vs tabs
......................................................................
f_cellid_to_RAI: fix spaces vs tabs
Change-Id: Ic1927729dd0d205f1bd866423c8dfdf91caf597d
---
M sgsn/SGSN_Tests.ttcn
1 file changed, 11 insertions(+), 11 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/53/39253/1
diff --git a/sgsn/SGSN_Tests.ttcn b/sgsn/SGSN_Tests.ttcn
index a7833fd..a39e346 100644
--- a/sgsn/SGSN_Tests.ttcn
+++ b/sgsn/SGSN_Tests.ttcn
@@ -210,17 +210,17 @@
/* mcc_mnc is encoded as of 24.008 10.5.5.15 */
var BcdMccMnc mcc_mnc := cell_id.ra_id.lai.mcc_mnc;
- var RoutingAreaIdentificationV ret := {
- mccDigit1 := mcc_mnc[0],
- mccDigit2 := mcc_mnc[1],
- mccDigit3 := mcc_mnc[2],
- mncDigit3 := mcc_mnc[3],
- mncDigit1 := mcc_mnc[4],
- mncDigit2 := mcc_mnc[5],
- lac := int2oct(cell_id.ra_id.lai.lac, 2),
- rac := int2oct(cell_id.ra_id.rac, 1)
- }
- return ret;
+ var RoutingAreaIdentificationV ret := {
+ mccDigit1 := mcc_mnc[0],
+ mccDigit2 := mcc_mnc[1],
+ mccDigit3 := mcc_mnc[2],
+ mncDigit3 := mcc_mnc[3],
+ mncDigit1 := mcc_mnc[4],
+ mncDigit2 := mcc_mnc[5],
+ lac := int2oct(cell_id.ra_id.lai.lac, 2),
+ rac := int2oct(cell_id.ra_id.rac, 1)
+ }
+ return ret;
};
private function f_BssgpCellId_to_GTP_CellId(in BssgpCellId cell_id) return GTP_CellId
--
To view, visit
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/39253?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newchange
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: Ic1927729dd0d205f1bd866423c8dfdf91caf597d
Gerrit-Change-Number: 39253
Gerrit-PatchSet: 1
Gerrit-Owner: lynxis lazus <lynxis(a)fe80.eu>