Skip to content

Commit

Permalink
tm: update return code for EoH check failure
Browse files Browse the repository at this point in the history
  • Loading branch information
miconda committed Nov 1, 2023
1 parent e34d415 commit c76444d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/tm/t_lookup.c
Original file line number Diff line number Diff line change
Expand Up @@ -1903,7 +1903,7 @@ int t_newtran(struct sip_msg *p_msg)
}
if((p_msg->parsed_flag & HDR_EOH_F) != HDR_EOH_F) {
LM_ERR("EoH not parsed\n");
return E_OUT_OF_MEM;
return E_UNEXPECTED_STATE;
}
/* t_lookup_requests attempts to find the transaction;
* it also calls check_transaction_quadruple -> it is
Expand Down

0 comments on commit c76444d

Please sign in to comment.