5
0
mirror of git://git.proxmox.com/git/proxmox-backup.git synced 2025-01-22 22:04:00 +03:00

fix #5465: restore daemon: mount ntfs with utf8 charset

since the change in our restore image to ntfs3, non iso8859-1 filenames
were broken. Fix that by adding the 'iocharset' option to ntfs3.

Leave the ntfs option in place, so that if the image gets booted
with an older kernel for some reason, this still works.

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
Dominik Csapak 2024-05-15 11:55:11 +02:00 committed by Fabian Grünbichler
parent 98e2c16a04
commit 31edde560a

View File

@ -37,6 +37,7 @@ lazy_static! {
m.insert("ufs", "ufstype=ufs2");
m.insert("ntfs", "utf8");
m.insert("ntfs3", "iocharset=utf8");
m
};