Skip to content

Commit

Permalink
Fix typo in creating new entity after bridge ( 1st comes from URI and…
Browse files Browse the repository at this point in the history
… then dname in the params list )
  • Loading branch information
vladpaiu committed Feb 6, 2024
1 parent dc4c5bb commit 22a151d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/b2b_logic/logic.c
Original file line number Diff line number Diff line change
Expand Up @@ -3071,7 +3071,7 @@ int process_bridge_action(struct sip_msg* msg, b2bl_tuple_t* tuple,

entity = b2bl_create_new_entity(B2B_CLIENT, 0, &new_br_ent[i]->dest_uri,
new_br_ent[i]->proxy.s?&new_br_ent[i]->proxy:0,
new_br_ent[i]->from_dname.s?&new_br_ent[i]->from_dname:0, 0,
0,new_br_ent[i]->from_dname.s?&new_br_ent[i]->from_dname:0,
new_br_ent[i]->id.s ? &new_br_ent[i]->id : NULL, hdrs,
new_br_ent[i]->adv_contact.s ? &new_br_ent[i]->adv_contact : NULL, 0);
if(entity == NULL)
Expand Down

0 comments on commit 22a151d

Please sign in to comment.