pespin has uploaded this change for review. (
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(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/55/36855/1
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: 1
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Gerrit-MessageType: newchange