]> sjero.net Git - linphone/blobdiff - coreapi/conference.c
Set UTC time in received chat messages.
[linphone] / coreapi / conference.c
index 16be62613f2b9697d5aaaed66dea6e0bf33ee489..c9d51b151c89beb144614a5bcc55a3dcf926cf5c 100644 (file)
@@ -240,7 +240,7 @@ static int remove_from_conference(LinphoneCore *lc, LinphoneCall *call, bool_t a
                err=linphone_core_update_call(lc,call,&call->params);
        } else{
                ms_message("Pausing call to actually remove from conference");
-               err=linphone_core_pause_call(lc,call);
+               err=_linphone_core_pause_call(lc,call);
        }
 
        return err;
@@ -339,7 +339,7 @@ int linphone_core_enter_conference(LinphoneCore *lc){
                return -1;
        }
        if (lc->current_call != NULL) {
-               linphone_core_pause_call(lc, lc->current_call);
+               _linphone_core_pause_call(lc, lc->current_call);
        }
        LinphoneConference *conf=&lc->conf_ctx;
        if (conf->local_participant==NULL) add_local_endpoint(conf,lc);