vfs: fix cache encoding with special characters - #7760

The vfs use the hardcoded OS encoding when creating temp file,
but decode it with encoding for the local filesystem (--local-encoding)
when copying it to remote.
This caused failures when the filenames contained special characters.
The hardcoded OS encoding is now used uniformly.
This commit is contained in:
URenko
2024-04-22 13:36:38 +00:00
committed by Nick Craig-Wood
parent e041796bfe
commit 2a615f4681
2 changed files with 3 additions and 3 deletions

View File

@@ -229,8 +229,8 @@ func main() {
fatalW(fd.WriteString(" "))("Write:")
}
in, out := buildTestString(
[]mapping{getMapping(m.mask)}, // pick
[]mapping{getMapping(encoder.EncodeZero)}, // quote
[]mapping{getMapping(m.mask)}, // pick
[]mapping{getMapping(encoder.EncodeZero)}, // quote
printables, fullwidthPrintables, encodables, encoded, greek) // fill
fatalW(fmt.Fprintf(fd, `{ // %d
mask: %s,