app: Release the call by releasing the initial request

This will then go through the release procedure of the relevant
call instead of letting it timeout on the initial leg.
This commit is contained in:
Holger Hans Peter Freyther 2016-03-24 18:24:02 +01:00
parent 4f8cafa5b0
commit e08887ec4e
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ void app_setup(struct app_config *cfg)
static void route_to_sip(struct call *call, const char *source, const char *dest)
{
LOGP(DAPP, LOGL_ERROR, "Can not route call(%u) to SIP yet\n", call->id);
call_leg_release(call->initial);
call->initial->release_call(call->initial);
}
void app_route_call(struct call *call, const char *source, const char *dest)