From 8d33a13b21899fec9200d6ea8a1e780cc7277fac Mon Sep 17 00:00:00 2001 From: Philipp Maier Date: Mon, 12 Nov 2018 11:58:55 +0100 Subject: [PATCH] BSSMAP_Templates: do not match on omit in tr_BSSMAP_HandoverPerformed template tr_BSSMAP_HandoverPerformed matches all optional fields on "omit". This does not make much sense as a safe default. Lets match on "*" instead. (See also other tr_ templates) Related OS#3645 Change-Id: Icd55afdaebdda8ba98431f358148035f7d220b8a --- library/BSSMAP_Templates.ttcn | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/library/BSSMAP_Templates.ttcn b/library/BSSMAP_Templates.ttcn index 5b943e90c..ff151f044 100644 --- a/library/BSSMAP_Templates.ttcn +++ b/library/BSSMAP_Templates.ttcn @@ -831,14 +831,14 @@ modifies tr_BSSAP_BSSMAP := { messageType := '17'O, cause := ?, cellIdentifier := ?, - chosenChannel := omit, - chosenEncryptionAlgorithm := omit, - speechVersion := omit, - lSAIdentifier := omit, - talkerPriority := omit, - codecList := omit, - speechCodec := omit, - lCLS_BSS_Status := omit + chosenChannel := *, + chosenEncryptionAlgorithm := *, + speechVersion := *, + lSAIdentifier := *, + talkerPriority := *, + codecList := *, + speechCodec := *, + lCLS_BSS_Status := * } } }