Skip to content

Commit

Permalink
siptrace: use msg_send_buffer() to skip send callbacks for uri duplicate
Browse files Browse the repository at this point in the history
- GH #3042

(cherry picked from commit e3b9521)
(cherry picked from commit 39e6c35)
  • Loading branch information
miconda committed Mar 2, 2022
1 parent 8145a3a commit 068861f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/siptrace/siptrace_send.c
Expand Up @@ -349,7 +349,7 @@ int trace_send_duplicate(char *buf, int len, dest_info_t *dst2)
}
}

if(msg_send(pdst, buf, len) < 0) {
if(msg_send_buffer(pdst, buf, len, 1) < 0) {
LM_ERR("cannot send duplicate message\n");
goto error;
}
Expand Down

0 comments on commit 068861f

Please sign in to comment.