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;
}
--
To view, visit
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/36855?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: I5369db54901d50cf08d7ffc3e0d1cf3f5091e77b
Gerrit-Change-Number: 36855
Gerrit-PatchSet: 2
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-MessageType: merged