Merge pull request #5712 from BOINC/dpa_db_dump

db_dump: report encoding correctly ('utf-8' rather than 'iso-8859-1')
This commit is contained in:
Vitalii Koshura 2024-07-27 00:09:55 +02:00 committed by GitHub
commit de57329e98
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -365,7 +365,7 @@ public:
}
write(
"<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<%s>\n", tag.c_str()
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<%s>\n", tag.c_str()
);
}