diff options
author | Pau Espin Pedrol <pespin@sysmocom.de> | 2021-01-05 17:37:41 +0100 |
---|---|---|
committer | Pau Espin Pedrol <pespin@sysmocom.de> | 2021-01-07 13:35:15 +0100 |
commit | ec2ee466b7ca7a30c560be635825ac43e60a7eb1 (patch) | |
tree | 875d77179cbfdbfd5c8622175fd0ae68a71d950e | |
parent | 7df55e0c42a5e94d9b8d66ee473a62c7d7c4565d (diff) |
CTRL: Fix tr_CtrlMsgGet containing invalid value in val field
"val" field is not used in GET commands and is hence set to omit by
TTCN3 decoder.
Change-Id: If1a273a2be71040eaea2189a0aeaf737adf848e5
-rw-r--r-- | library/Osmocom_CTRL_Types.ttcn | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/Osmocom_CTRL_Types.ttcn b/library/Osmocom_CTRL_Types.ttcn index 52be956..36e6762 100644 --- a/library/Osmocom_CTRL_Types.ttcn +++ b/library/Osmocom_CTRL_Types.ttcn @@ -124,7 +124,7 @@ template CtrlMessage tr_CtrlMsgGet(template CtrlId id, template CtrlVariable var verb := "GET", id := id, variable := variable, - val := ? + val := omit } } |