Skip to content

Commit

Permalink
app_lua: typos
Browse files Browse the repository at this point in the history
  • Loading branch information
dilyanpalauzov authored and miconda committed Mar 30, 2023
1 parent ca2c511 commit 9083ee6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions src/modules/app_lua/app_lua_mod.c
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ static int ki_app_lua_dostring(sip_msg_t *msg, str *script)
return -1;
}
if(!lua_sr_initialized()) {
LM_ERR("Lua env not intitialized");
LM_ERR("Lua env not initialized");
return -1;
}
memcpy(_lua_buf_stack[0], script->s, script->len);
Expand Down Expand Up @@ -250,7 +250,7 @@ static int ki_app_lua_dofile(sip_msg_t *msg, str *script)
return -1;
}
if(!lua_sr_initialized()) {
LM_ERR("Lua env not intitialized");
LM_ERR("Lua env not initialized");
return -1;
}
memcpy(_lua_buf_stack[0], script->s, script->len);
Expand Down Expand Up @@ -282,7 +282,7 @@ static int ki_app_lua_runstring(sip_msg_t *msg, str *script)
}
if(!lua_sr_initialized())
{
LM_ERR("Lua env not intitialized");
LM_ERR("Lua env not initialized");
return -1;
}
memcpy(_lua_buf_stack[0], script->s, script->len);
Expand All @@ -298,7 +298,7 @@ static int w_app_lua_runstring(struct sip_msg *msg, char *script, char *extra)
str s;
if(!lua_sr_initialized())
{
LM_ERR("Lua env not intitialized");
LM_ERR("Lua env not initialized");
return -1;
}
if(fixup_get_svalue(msg, (gparam_p)script, &s)<0)
Expand All @@ -318,7 +318,7 @@ static int w_app_lua_run(struct sip_msg *msg, char *func, char *p1, char *p2,
str s;
if(!lua_sr_initialized())
{
LM_ERR("Lua env not intitialized");
LM_ERR("Lua env not initialized");
return -1;
}
if(fixup_get_svalue(msg, (gparam_p)func, &s)<0)
Expand Down
2 changes: 1 addition & 1 deletion src/modules/app_lua/doc/app_lua_admin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<itemizedlist>
<listitem>
<para>
<ulink url="http://kamailio.org/docs/tutorials/devel/kamailio-kemi-framework/">http://kamailio.org/docs/tutorials/devel/kamailio-kemi-framework/</ulink>
<ulink url="https://kamailio.org/docs/tutorials/devel/kamailio-kemi-framework/">https://kamailio.org/docs/tutorials/devel/kamailio-kemi-framework/</ulink>
</para>
</listitem>
</itemizedlist>
Expand Down

0 comments on commit 9083ee6

Please sign in to comment.