mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-18 11:38:08 +00:00
Oops... Forgot the lc parameter.
This commit is contained in:
parent
93c48ae168
commit
1d4f910cff
1 changed files with 2 additions and 2 deletions
|
|
@ -1729,7 +1729,7 @@ bool_t linphone_core_get_use_info_for_dtmf(LinphoneCore *lc)
|
|||
**/
|
||||
void linphone_core_set_use_info_for_dtmf(LinphoneCore *lc,bool_t use_info)
|
||||
{
|
||||
if (linphone_core_ready()) {
|
||||
if (linphone_core_ready(lc)) {
|
||||
lp_config_set_int(lc->config, "sip", "use_info", use_info);
|
||||
}
|
||||
}
|
||||
|
|
@ -1751,7 +1751,7 @@ bool_t linphone_core_get_use_rfc2833_for_dtmf(LinphoneCore *lc)
|
|||
**/
|
||||
void linphone_core_set_use_rfc2833_for_dtmf(LinphoneCore *lc,bool_t use_rfc2833)
|
||||
{
|
||||
if (linphone_core_ready()) {
|
||||
if (linphone_core_ready(lc)) {
|
||||
lp_config_set_int(lc->config, "sip", "use_rfc2833", use_rfc2833);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue