From 131201a7d67e0e211ded4b086927fca7dffb5401 Mon Sep 17 00:00:00 2001 From: Ghislain MARY Date: Thu, 17 May 2018 18:09:09 +0200 Subject: [PATCH] Improve last commit. --- coreapi/linphonecore.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/coreapi/linphonecore.c b/coreapi/linphonecore.c index 0ba962080..8eb2280b8 100644 --- a/coreapi/linphonecore.c +++ b/coreapi/linphonecore.c @@ -3724,7 +3724,7 @@ static LinphoneCall * get_unique_call(LinphoneCore *lc) { return call; } -static LinphoneStatus _linphone_core_accept_call_with_params(LinphoneCore *lc, LinphoneCall *call, const LinphoneCallParams *params) { +LinphoneStatus linphone_core_accept_call_with_params(LinphoneCore *lc, LinphoneCall *call, const LinphoneCallParams *params) { if (call == NULL) { call = get_unique_call(lc); if (call == NULL) { @@ -3736,11 +3736,7 @@ static LinphoneStatus _linphone_core_accept_call_with_params(LinphoneCore *lc, L } LinphoneStatus linphone_core_accept_call(LinphoneCore *lc, LinphoneCall *call) { - return _linphone_core_accept_call_with_params(lc, call, NULL); -} - -LinphoneStatus linphone_core_accept_call_with_params(LinphoneCore *lc, LinphoneCall *call, const LinphoneCallParams *params) { - return _linphone_core_accept_call_with_params(lc, call, params); + return linphone_core_accept_call_with_params(lc, call, NULL); } LinphoneStatus linphone_core_redirect_call(LinphoneCore *lc, LinphoneCall *call, const char *redirect_uri) {