From 868c54118ff75fd8333d7727995794f639e658bd Mon Sep 17 00:00:00 2001 From: Simon Morlat Date: Mon, 16 Oct 2017 16:54:31 +0200 Subject: [PATCH] fix accidental removal of linphone_factory_create_core() --- coreapi/factory.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coreapi/factory.c b/coreapi/factory.c index 43cc161e9..a141e3134 100644 --- a/coreapi/factory.c +++ b/coreapi/factory.c @@ -155,7 +155,7 @@ LinphoneCore *linphone_factory_create_core_2(const LinphoneFactory *factory, Lin return lc; } -LinphoneCore *linphone_factory_create_core_2(const LinphoneFactory *factory, LinphoneCoreCbs *cbs, +LinphoneCore *linphone_factory_create_core(const LinphoneFactory *factory, LinphoneCoreCbs *cbs, const char *config_path, const char *factory_config_path){ return linphone_factory_create_core_2(factory, cbs, config_path, factory_config_path, NULL, NULL); }