Skip to content

Commit

Permalink
tm: remove extra + used before MAXFWD_HEADER_LEN
Browse files Browse the repository at this point in the history
  • Loading branch information
miconda committed Sep 19, 2024
1 parent f7045d1 commit 307d6db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/tm/t_msgbuilder.c
Original file line number Diff line number Diff line change
Expand Up @@ -1320,7 +1320,7 @@ char *build_dlg_ack(struct sip_msg *rpl, struct cell *Trans,

/* headers */
*len += Trans->from_hdr.len + Trans->callid_hdr.len + to->len
+ Trans->cseq_hdr_n.len + 1 + ACK_LEN + +MAXFWD_HEADER_LEN
+ Trans->cseq_hdr_n.len + 1 + ACK_LEN + MAXFWD_HEADER_LEN
+ CRLF_LEN;

/* copy'n'paste Route headers */
Expand Down

0 comments on commit 307d6db

Please sign in to comment.