mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-21 13:08:08 +00:00
Disable VFS until all issues are resolved
This commit is contained in:
parent
77ba701820
commit
de2543d65c
3 changed files with 6 additions and 3 deletions
|
|
@ -376,7 +376,8 @@ void linphone_core_call_log_storage_init(LinphoneCore *lc) {
|
|||
|
||||
linphone_core_call_log_storage_close(lc);
|
||||
|
||||
ret=_linphone_sqlite3_open(lc->logs_db_file, &db);
|
||||
//ret=_linphone_sqlite3_open(lc->logs_db_file, &db);
|
||||
ret = sqlite3_open(lc->logs_db_file, &db);
|
||||
if(ret != SQLITE_OK) {
|
||||
errmsg = sqlite3_errmsg(db);
|
||||
ms_error("Error in the opening: %s.\n", errmsg);
|
||||
|
|
|
|||
|
|
@ -1141,7 +1141,8 @@ void linphone_core_friends_storage_init(LinphoneCore *lc) {
|
|||
|
||||
linphone_core_friends_storage_close(lc);
|
||||
|
||||
ret = _linphone_sqlite3_open(lc->friends_db_file, &db);
|
||||
//ret = _linphone_sqlite3_open(lc->friends_db_file, &db);
|
||||
ret = sqlite3_open(lc->friends_db_file, &db);
|
||||
if (ret != SQLITE_OK) {
|
||||
errmsg = sqlite3_errmsg(db);
|
||||
ms_error("Error in the opening: %s.\n", errmsg);
|
||||
|
|
|
|||
|
|
@ -695,7 +695,8 @@ void linphone_core_message_storage_init(LinphoneCore *lc){
|
|||
|
||||
linphone_core_message_storage_close(lc);
|
||||
|
||||
ret=_linphone_sqlite3_open(lc->chat_db_file,&db);
|
||||
//ret=_linphone_sqlite3_open(lc->chat_db_file,&db);
|
||||
ret = sqlite3_open(lc->chat_db_file,&db);
|
||||
if(ret != SQLITE_OK) {
|
||||
errmsg=sqlite3_errmsg(db);
|
||||
ms_error("Error in the opening: %s.\n", errmsg);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue