From c971007361d0ae52991e7f2bceead04ac23751b0 Mon Sep 17 00:00:00 2001 From: Simon Morlat Date: Wed, 22 Jun 2011 12:26:41 +0200 Subject: [PATCH] rename up_ptime into upload_ptime --- coreapi/linphonecore.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/coreapi/linphonecore.c b/coreapi/linphonecore.c index 651eca134..49a2601da 100644 --- a/coreapi/linphonecore.c +++ b/coreapi/linphonecore.c @@ -880,7 +880,7 @@ int linphone_core_get_download_ptime(LinphoneCore *lc) { * **/ void linphone_core_set_upload_ptime(LinphoneCore *lc, int ptime){ - lp_config_set_int(lc->config,"rtp","up_ptime",ptime); + lp_config_set_int(lc->config,"rtp","upload_ptime",ptime); } /** @@ -889,7 +889,7 @@ void linphone_core_set_upload_ptime(LinphoneCore *lc, int ptime){ * **/ int linphone_core_get_upload_ptime(LinphoneCore *lc){ - return lp_config_get_int(lc->config,"rtp","up_ptime",0); + return lp_config_get_int(lc->config,"rtp","upload_ptime",0); }