From e138e94bd3e222d0a8a7ef5e36c5dba66e73993b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B8=D0=BB=D1=8F=D0=BD=20=D0=9F=D0=B0=D0=BB=D0=B0?= =?UTF-8?q?=D1=83=D0=B7=D0=BE=D0=B2?= Date: Mon, 8 May 2023 13:08:21 +0200 Subject: [PATCH] tsilo: typos --- src/modules/tsilo/doc/tsilo_admin.xml | 4 ++-- src/modules/tsilo/ts_append.c | 4 ++-- src/modules/tsilo/tsilo.c | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/modules/tsilo/doc/tsilo_admin.xml b/src/modules/tsilo/doc/tsilo_admin.xml index 5f23ae9fc77..4edfe2e5e56 100644 --- a/src/modules/tsilo/doc/tsilo_admin.xml +++ b/src/modules/tsilo/doc/tsilo_admin.xml @@ -259,8 +259,8 @@ if (is_method("REGISTER")) { ... if (is_method("REGISTER")) { - $var(formated_ct) = $(x_hdr(Contact){nameaddr.uri}); - ts_append_by_contact("location", "$tu", "$var(formated_ct)"); + $var(formatted_ct) = $(x_hdr(Contact){nameaddr.uri}); + ts_append_by_contact("location", "$tu", "$var(formatted_ct)"); } ... diff --git a/src/modules/tsilo/ts_append.c b/src/modules/tsilo/ts_append.c index 1dc29ef0fdd..aab11130d6a 100644 --- a/src/modules/tsilo/ts_append.c +++ b/src/modules/tsilo/ts_append.c @@ -125,13 +125,13 @@ int ts_append_to(struct sip_msg *msg, int tindex, int tlabel, char *table, /* check if the dialog is still in the early stage */ if(t->flags & T_CANCELED) { - LM_DBG("trasaction [%u:%u] was cancelled\n", tindex, tlabel); + LM_DBG("transaction [%u:%u] was cancelled\n", tindex, tlabel); ret = -2; goto done; } if(t->uas.status >= 200) { - LM_DBG("trasaction [%u:%u] sent out a final response already - %d\n", + LM_DBG("transaction [%u:%u] sent out a final response already - %d\n", tindex, tlabel, t->uas.status); ret = -3; goto done; diff --git a/src/modules/tsilo/tsilo.c b/src/modules/tsilo/tsilo.c index 10b7a04bd02..98ed0f12993 100644 --- a/src/modules/tsilo/tsilo.c +++ b/src/modules/tsilo/tsilo.c @@ -380,7 +380,7 @@ static int w_ts_append_to2( } if(fixup_get_svalue(msg, (gparam_t *)ruri, &suri) != 0) { - LM_ERR("failed to conert r-uri parameter\n"); + LM_ERR("failed to convert r-uri parameter\n"); return -1; } if(ts_check_uri(&suri) < 0) @@ -690,7 +690,7 @@ static int w_ts_store1(struct sip_msg *msg, char *_ruri, char *p2) str suri; if(fixup_get_svalue(msg, (gparam_t *)_ruri, &suri) != 0) { - LM_ERR("failed to conert r-uri parameter\n"); + LM_ERR("failed to convert r-uri parameter\n"); return -1; } return ts_store(msg, &suri);