fix(lpconfig): in linphone_config_load_from_xml_file, replace LpConfig by LinphoneConfig

This commit is contained in:
Ronan Abhamon 2017-04-26 15:23:55 +02:00
parent 986734364e
commit fa2dad63d4
2 changed files with 2 additions and 2 deletions

View file

@ -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;

View file

@ -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.