pespin has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/36855?usp=email )
Change subject: SIP_Templates: Fix missing ':' between URI scheme and host ......................................................................
SIP_Templates: Fix missing ':' between URI scheme and host
Change-Id: I5369db54901d50cf08d7ffc3e0d1cf3f5091e77b --- M library/SIP_Templates.ttcn 1 file changed, 10 insertions(+), 1 deletion(-)
Approvals: laforge: Looks good to me, but someone else must approve Jenkins Builder: Verified osmith: Looks good to me, approved
diff --git a/library/SIP_Templates.ttcn b/library/SIP_Templates.ttcn index ffd6f2b..37dee4b 100644 --- a/library/SIP_Templates.ttcn +++ b/library/SIP_Templates.ttcn @@ -1388,7 +1388,7 @@ }
function f_sip_SipUrl_to_str(SipUrl uri) return charstring { - var charstring str := uri.scheme & f_sip_HostPort_to_str(uri.hostPort); + var charstring str := uri.scheme & ":" & f_sip_HostPort_to_str(uri.hostPort); return str; }