From b8dd0174013ef5327bbac5d9f230d23a7d0c23d3 Mon Sep 17 00:00:00 2001 From: Yann Diorcet Date: Wed, 31 Oct 2012 11:19:39 +0100 Subject: [PATCH] Wrong call state on in call timeout --- coreapi/linphonecore.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/coreapi/linphonecore.c b/coreapi/linphonecore.c index 570482596..6330e1642 100644 --- a/coreapi/linphonecore.c +++ b/coreapi/linphonecore.c @@ -2009,8 +2009,6 @@ void linphone_core_iterate(LinphoneCore *lc){ } if (lc->sip_conf.in_call_timeout > 0 && elapsed>lc->sip_conf.in_call_timeout) { ms_message("in call timeout (%i)",lc->sip_conf.in_call_timeout); - call->log->status=LinphoneCallMissed; - call->reason=LinphoneReasonNotAnswered; linphone_core_terminate_call(lc,call); } }