laforge has submitted this change. (
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/26333 )
Change subject: library/DNS_Helpers: type 'char' was substituted with
'charstring'
......................................................................
library/DNS_Helpers: type 'char' was substituted with 'charstring'
Change-Id: I0c93002cf915a8ce7e63f208693b2b63ae52ac38
Related: SYS#5602
---
M library/DNS_Helpers.ttcn
1 file changed, 1 insertion(+), 1 deletion(-)
Approvals:
Jenkins Builder: Verified
pespin: Looks good to me, but someone else must approve
dexter: Looks good to me, but someone else must approve
laforge: Looks good to me, approved
diff --git a/library/DNS_Helpers.ttcn b/library/DNS_Helpers.ttcn
index 85040fc..a1a347c 100644
--- a/library/DNS_Helpers.ttcn
+++ b/library/DNS_Helpers.ttcn
@@ -10,7 +10,7 @@
* SPDX-License-Identifier: GPL-2.0-or-later
*/
-private function f_strchr(charstring s, char c) return integer {
+private function f_strchr(charstring s, charstring c) return integer {
var integer i;
for (i := 0; i < lengthof(s); i := i+1) {
if (s[i] == c) {
--
To view, visit https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/26333
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: I0c93002cf915a8ce7e63f208693b2b63ae52ac38
Gerrit-Change-Number: 26333
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <[email protected]>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: dexter <[email protected]>
Gerrit-Reviewer: laforge <[email protected]>
Gerrit-Reviewer: pespin <[email protected]>
Gerrit-MessageType: merged