mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-23 14:18:07 +00:00
tester: allow dns hosts path to be absolute
This commit is contained in:
parent
19384ed6de
commit
e6713204fe
1 changed files with 1 additions and 1 deletions
|
|
@ -138,7 +138,7 @@ LinphoneCore* configure_lc_from(LinphoneCoreVTable* v_table, const char* path, c
|
|||
ringbackpath = ms_strdup_printf("%s/sounds/ringback.wav", path);
|
||||
nowebcampath = ms_strdup_printf("%s/images/nowebcamCIF.jpg", path);
|
||||
rootcapath = ms_strdup_printf("%s/certificates/cn/cafile.pem", path);
|
||||
dnsuserhostspath = ms_strdup_printf("%s/%s", path, userhostsfile);
|
||||
dnsuserhostspath = userhostsfile[0]=='/' ? ms_strdup(userhostsfile) : ms_strdup_printf("%s/%s", path, userhostsfile);
|
||||
|
||||
|
||||
if( config != NULL ) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue