Skip to content

Commit

Permalink
uac: Execute event-route [uac:reply], if evroute is set (Bugfix)
Browse files Browse the repository at this point in the history
  • Loading branch information
carstenbock committed Jun 1, 2015
1 parent 37afdd1 commit ebb1594
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/uac/uac_send.c
Expand Up @@ -770,7 +770,7 @@ int uac_req_send(void)
uac_r.headers = (_uac_req.s_hdrs.len <= 0) ? NULL : &_uac_req.s_hdrs;
uac_r.body = (_uac_req.s_body.len <= 0) ? NULL : &_uac_req.s_body;
uac_r.ssock = (_uac_req.s_sock.len <= 0) ? NULL : &_uac_req.s_sock;
if(_uac_req.s_auser.len > 0 && _uac_req.s_apasswd.len>0)
if(_uac_req.evroute > 0)
{
tp = uac_send_info_clone(&_uac_req);
if(tp==NULL)
Expand Down

0 comments on commit ebb1594

Please sign in to comment.