Change in osmo-ttcn3-hacks[master]: msc/BSC_ConnectionHandler: fix early return in f_mm_ciph_geran()

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.

fixeria gerrit-no-reply at lists.osmocom.org
Mon Dec 6 15:00:53 UTC 2021


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


Change subject: msc/BSC_ConnectionHandler: fix early return in f_mm_ciph_geran()
......................................................................

msc/BSC_ConnectionHandler: fix early return in f_mm_ciph_geran()

In [1] I forgot to invert an if statement.  This regression caused
most of GERAN specific test cases to fail due to "Tguard timeout".

Change-Id: I8cbaff00abfd9eb252dc3011df848e2e24fe5a1e
Fixes: [1] Ib7ebe8fd675295beb02cadebb19d8465dffeb732
Related: OS#5333
---
M msc/BSC_ConnectionHandler.ttcn
1 file changed, 1 insertion(+), 1 deletion(-)



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

diff --git a/msc/BSC_ConnectionHandler.ttcn b/msc/BSC_ConnectionHandler.ttcn
index 873ec5b..7b3188a 100644
--- a/msc/BSC_ConnectionHandler.ttcn
+++ b/msc/BSC_ConnectionHandler.ttcn
@@ -619,7 +619,7 @@
 	var OCT1 a5_perm_alg;
 	var PDU_BSSAP pdu;
 
-	if (g_pars.net.expect_ciph) {
+	if (not g_pars.net.expect_ciph) {
 		/* There is nothing to do */
 		return;
 	}

-- 
To view, visit https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/26451
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: I8cbaff00abfd9eb252dc3011df848e2e24fe5a1e
Gerrit-Change-Number: 26451
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <vyanitskiy at sysmocom.de>
Gerrit-MessageType: newchange
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20211206/c3d204cd/attachment.htm>


More information about the gerrit-log mailing list