osmith has uploaded this change for review. ( 
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/33352 )


Change subject: msc: f_mt_call_initiate: fix typo
......................................................................

msc: f_mt_call_initiate: fix typo

Change-Id: Idfa381a036efcc21044700d069db434150fcaadf
---
M msc/BSC_ConnectionHandler.ttcn
M msc/MSC_Tests.ttcn
2 files changed, 13 insertions(+), 4 deletions(-)



  git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks 
refs/changes/52/33352/1

diff --git a/msc/BSC_ConnectionHandler.ttcn b/msc/BSC_ConnectionHandler.ttcn
index d96ae0b..f141955 100644
--- a/msc/BSC_ConnectionHandler.ttcn
+++ b/msc/BSC_ConnectionHandler.ttcn
@@ -1050,7 +1050,7 @@
 };

 /* Allocate a call reference and send SETUP via MNCC to MSC */
-function f_mt_call_initate(inout CallParameters cpars)
+function f_mt_call_initiate(inout CallParameters cpars)
 runs on BSC_ConnHdlr {
        cpars.mo_call := false;
        cpars.mncc_callref := f_rnd_int(2147483648);
@@ -1337,7 +1337,7 @@
 runs on BSC_ConnHdlr {

        /* Initiate the call via MNCC */
-       f_mt_call_initate(cpars);
+       f_mt_call_initiate(cpars);

        /* BSC <- MSC: Expect paging. FIXME: By TMSI or not? */
        f_ran_register_imsi(g_pars.imsi, g_pars.tmsi);
diff --git a/msc/MSC_Tests.ttcn b/msc/MSC_Tests.ttcn
index 8fc212c..666c6c1 100644
--- a/msc/MSC_Tests.ttcn
+++ b/msc/MSC_Tests.ttcn
@@ -2222,7 +2222,7 @@
        f_expect_paging();

        log("MNCC signals MT call, before Paging Response");
-       f_mt_call_initate(cpars);
+       f_mt_call_initiate(cpars);
        f_ran_register_imsi(g_pars.imsi, g_pars.tmsi);

        f_sleep(0.5);
@@ -5602,7 +5602,7 @@
        var CallParameters cpars := valueof(t_CallParams('12345'H, 0));

        /* Initiate a call via MNCC interface */
-       f_mt_call_initate(cpars);
+       f_mt_call_initiate(cpars);

        /* Expect a paging request and respond accordingly with a service 
request */
        SGsAP.receive(tr_SGsAP_PAGING_REQ(pars.imsi, vlr_name, 
CS_call_indicator, omit));

--
To view, visit https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/33352
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: Idfa381a036efcc21044700d069db434150fcaadf
Gerrit-Change-Number: 33352
Gerrit-PatchSet: 1
Gerrit-Owner: osmith <[email protected]>
Gerrit-MessageType: newchange

Reply via email to