Module: kamailio Branch: master Commit: 8cebdfa85be0ff8ac8a3c82158d24e6252c879f6 URL: https://github.com/kamailio/kamailio/commit/8cebdfa85be0ff8ac8a3c82158d24e6252c879f6
Author: Daniel-Constantin Mierla <[email protected]> Committer: Daniel-Constantin Mierla <[email protected]> Date: 2025-12-11T13:27:57+01:00 tm: updated to new branch_builder() prototype --- Modified: src/modules/tm/t_msgbuilder.c --- Diff: https://github.com/kamailio/kamailio/commit/8cebdfa85be0ff8ac8a3c82158d24e6252c879f6.diff Patch: https://github.com/kamailio/kamailio/commit/8cebdfa85be0ff8ac8a3c82158d24e6252c879f6.patch --- diff --git a/src/modules/tm/t_msgbuilder.c b/src/modules/tm/t_msgbuilder.c index d9231486c61..6075fdbade2 100644 --- a/src/modules/tm/t_msgbuilder.c +++ b/src/modules/tm/t_msgbuilder.c @@ -1814,7 +1814,8 @@ char *build_uac_req(str *method, str *headers, str *body, dlg_t *dialog, int t_calc_branch(struct cell *t, int b, char *branch, int *branch_len) { - return branch_builder(t->hash_index, 0, t->md5, b, branch, branch_len); + return branch_builder( + t->hash_index, 0, t->md5, NULL, b, branch, branch_len); } /** _______________________________________________ Kamailio - Development Mailing List -- [email protected] To unsubscribe send an email to [email protected] Important: keep the mailing list in the recipients, do not reply only to the sender!
