Skip to content

Commit

Permalink
Merge pull request #3526 from NormB/minor_fixes
Browse files Browse the repository at this point in the history
minor_fixes
  • Loading branch information
razvancrainea authored Jan 8, 2025
2 parents 9c87c4b + 068e158 commit d92acaa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion modules/presence/notify.c
Original file line number Diff line number Diff line change
Expand Up @@ -1520,7 +1520,7 @@ int get_subs_db(str* pres_uri, pres_ev_t* event, str* sender,

if(result->n <=0 )
{
LM_DBG("The query for subscribtion for [uri]= %.*s for [event]= %.*s"
LM_DBG("The query for subscription for [uri]= %.*s for [event]= %.*s"
" returned no result\n",pres_uri->len, pres_uri->s,
event->name.len, event->name.s);
pa_dbf.free_result(pa_db, result);
Expand Down
2 changes: 1 addition & 1 deletion modules/presence/presence.c
Original file line number Diff line number Diff line change
Expand Up @@ -874,7 +874,7 @@ static mi_response_t *mi_list_shtable(const mi_params_t *params, str *from, str
lock_get(&subs_htable[i].lock);
for (s = subs_htable[i].entries->next; s; s = s->next) {
if (from) {
/* print subscribtion if "from" and "to" match with given wildcard */
/* print subscription if "from" and "to" match with given wildcard */
rc = from_to_match_subs(s, &match_from, &match_to, from_w, to_w);
if (rc < 0)
goto error;
Expand Down
2 changes: 1 addition & 1 deletion modules/rtpengine/rtpengine.c
Original file line number Diff line number Diff line change
Expand Up @@ -4146,7 +4146,7 @@ static int rtpengine_stopmedia_f(struct sip_msg* msg, str *flags,
dict = rtpe_function_call_ok(&bencbuf, msg, OP_STOP_MEDIA, flags,
NULL, spvar, NULL, NULL, NULL);
if (!dict) {
LM_ERR("could not start media!\n");
LM_ERR("could not stop media!\n");
return -1;
}

Expand Down

0 comments on commit d92acaa

Please sign in to comment.