From 71fbc65eb05e93a313a2f78c75c7a67ac16cbf51 Mon Sep 17 00:00:00 2001 From: Camila Date: Tue, 18 Aug 2020 13:30:15 +0200 Subject: [PATCH] Minor fix in text of warning and debug message. Signed-off-by: Camila --- src/common/syncjournaldb.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/syncjournaldb.cpp b/src/common/syncjournaldb.cpp index d44f1f98b..01db818ed 100644 --- a/src/common/syncjournaldb.cpp +++ b/src/common/syncjournaldb.cpp @@ -729,10 +729,10 @@ bool SyncJournalDb::updateMetadataTableStructure() SqlQuery query(_db); query.prepare("ALTER TABLE metadata ADD COLUMN isE2eEncrypted INTEGER;"); if (!query.exec()) { - sqlFail("updateMetadataTableStructure: add e2eMangledName column", query); + sqlFail("updateMetadataTableStructure: add isE2eEncrypted column", query); re = false; } - commitInternal("update database structure: add e2eMangledName col"); + commitInternal("update database structure: add isE2eEncrypted col"); } if (!tableColumns("uploadinfo").contains("contentChecksum")) { -- 2.30.2