mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-23 06:08:07 +00:00
fix(lpconfig): in linphone_config_load_from_xml_file, replace LpConfig by LinphoneConfig
This commit is contained in:
parent
986734364e
commit
fa2dad63d4
2 changed files with 2 additions and 2 deletions
|
|
@ -500,7 +500,7 @@ static char* _linphone_config_xml_convert(LpConfig *lpc, xml2lpc_context *contex
|
|||
return error_msg;
|
||||
}
|
||||
|
||||
char* linphone_config_load_from_xml_file(LpConfig *lpc, const char *filename, void* lc, void* ctx) {
|
||||
char* linphone_config_load_from_xml_file(LinphoneConfig *lpc, const char *filename, void* lc, void* ctx) {
|
||||
xml2lpc_context *context = NULL;
|
||||
char* path = lp_realpath(filename, NULL);
|
||||
char* error_msg = NULL;
|
||||
|
|
|
|||
|
|
@ -90,7 +90,7 @@ LINPHONE_PUBLIC LinphoneStatus linphone_config_read_file(LinphoneConfig *lpconfi
|
|||
* @param lc LinphoneCore to share with xml2lpc
|
||||
* @param ctx The context given to xml2lpc callback
|
||||
*/
|
||||
LINPHONE_PUBLIC char* linphone_config_load_from_xml_file(LpConfig *lpc, const char *filename, void* lc, void* ctx);
|
||||
LINPHONE_PUBLIC char* linphone_config_load_from_xml_file(LinphoneConfig *lpc, const char *filename, void* lc, void* ctx);
|
||||
|
||||
/**
|
||||
* Reads a xml config string and fill the LinphoneConfig with the read config dynamic values.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue