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
This commit is contained in:
Philipp Maier 2018-11-12 11:58:55 +01:00
parent 4c32b952dd
commit 8d33a13b21
1 changed files with 8 additions and 8 deletions

View File

@ -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 := *
}
}
}