Skip to content

Commit

Permalink
tm: more explicit debug message when not matching reply to transaction
Browse files Browse the repository at this point in the history
  • Loading branch information
miconda committed Jul 2, 2018
1 parent 30745c2 commit 961c2b3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/modules/tm/t_lookup.c
Expand Up @@ -882,13 +882,13 @@ int t_reply_matching( struct sip_msg *p_msg , int *p_branch )

/* sanity check */
if (unlikely(reverse_hex2int(hashi, hashl, &hash_index)<0
||hash_index>=TABLE_ENTRIES
|| hash_index>=TABLE_ENTRIES
|| reverse_hex2int(branchi, branchl, &branch_id)<0
|| branch_id>=sr_dst_max_branches
|| loopl!=MD5_LEN)
) {
LM_DBG("poor reply labels %d label %d branch %d\n",
hash_index, entry_label, branch_id );
LM_DBG("poor reply ids - index %d label %d branch %d loopl %d/%d\n",
hash_index, entry_label, branch_id, loopl, MD5_LEN);
goto nomatch2;
}

Expand Down

0 comments on commit 961c2b3

Please sign in to comment.