dexter has uploaded this change for review. (
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/43180?usp=email )
Change subject: SGP32Definitions_Templates: fix template tr_smdpSigned2
......................................................................
SGP32Definitions_Templates: fix template tr_smdpSigned2
The member bppEuiccOtpk is currently expected to be always present
with any value (?), which is not correct since it is an optional
parameter (*).
Change-Id: I660838e47334a9dc9eb12b967e7f92b465e86eb2
Related: SYS#8100
---
M library/euicc/RSPDefinitions_Templates.ttcn
1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks
refs/changes/80/43180/1
diff --git a/library/euicc/RSPDefinitions_Templates.ttcn
b/library/euicc/RSPDefinitions_Templates.ttcn
index 8c3886e..b7ea50c 100644
--- a/library/euicc/RSPDefinitions_Templates.ttcn
+++ b/library/euicc/RSPDefinitions_Templates.ttcn
@@ -200,7 +200,7 @@
template (present) boolean
ccRequiredFlag := ?) := {
transactionId := transactionId,
ccRequiredFlag := ccRequiredFlag,
- bppEuiccOtpk := ?
+ bppEuiccOtpk := *
}
template (value) SmdpSigned2 ts_smdpSigned2(template (value) octetstring
transactionId := 'ABCDEF'O,
template (value) boolean
ccRequiredFlag := false) := {
--
To view, visit https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/43180?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: I660838e47334a9dc9eb12b967e7f92b465e86eb2
Gerrit-Change-Number: 43180
Gerrit-PatchSet: 1
Gerrit-Owner: dexter <[email protected]>