15 lines
820 B
Diff
15 lines
820 B
Diff
|
Index: akonadi-19.08.0/src/server/storage/dbconfigmysql.cpp
|
||
|
===================================================================
|
||
|
--- akonadi-19.08.0.orig/src/server/storage/dbconfigmysql.cpp
|
||
|
+++ akonadi-19.08.0/src/server/storage/dbconfigmysql.cpp
|
||
|
@@ -235,8 +235,7 @@ bool DbConfigMysql::startInternalServer(
|
||
|
bool confUpdate = false;
|
||
|
QFile actualFile(actualConfig);
|
||
|
// update conf only if either global (or local) is newer than actual
|
||
|
- if ((QFileInfo(globalConfig).lastModified() > QFileInfo(actualFile).lastModified()) ||
|
||
|
- (QFileInfo(localConfig).lastModified() > QFileInfo(actualFile).lastModified())) {
|
||
|
+ if (true) {
|
||
|
QFile globalFile(globalConfig);
|
||
|
QFile localFile(localConfig);
|
||
|
if (globalFile.open(QFile::ReadOnly) && actualFile.open(QFile::WriteOnly)) {
|