Skip to content

Commit

Permalink
tm: log message if starting cancel retransmission fails
Browse files Browse the repository at this point in the history
(cherry picked from commit afe84de)
  • Loading branch information
miconda committed Mar 29, 2021
1 parent 631232a commit 5ae6e52
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/modules/tm/t_cancel.c
Expand Up @@ -527,7 +527,9 @@ unsigned int t_uac_cancel( str *headers, str *body,
LM_ERR("send failed\n");
goto error1;
}
start_retr(cancel);
if(start_retr(cancel)!=0) {
LM_CRIT("failed to start retransmission for cancel %p\n", cancel);
}
/* </start_sending> */

return ret;
Expand Down

0 comments on commit 5ae6e52

Please sign in to comment.