From a3869672c8c94210f9d58d4fb5450bd17fc8a71a Mon Sep 17 00:00:00 2001 From: Johan Pascal Date: Fri, 25 Apr 2014 22:13:10 +0200 Subject: [PATCH] Default value shall be Lime enabled --- coreapi/linphonecore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coreapi/linphonecore.c b/coreapi/linphonecore.c index b3b94cc6d..c1b5e3e41 100644 --- a/coreapi/linphonecore.c +++ b/coreapi/linphonecore.c @@ -697,7 +697,7 @@ static void sip_config_read(LinphoneCore *lc) tmp=lp_config_get_int(lc->config,"sip","guess_hostname",1); linphone_core_set_guess_hostname(lc,tmp); - tmp=lp_config_get_int(lc->config,"sip","lime",0); + tmp=lp_config_get_int(lc->config,"sip","lime",1); linphone_core_set_lime(lc,tmp); tmp=lp_config_get_int(lc->config,"sip","inc_timeout",30);