Displaying 1 result from an estimated 1 matches for "ms_r".
Did you mean:
m_r
2010 Nov 24
3
DO NOT REPLY [Bug 7816] New: get_tmpname() can create invalid UTF-8 filenames
...be several bytes long and arbitrarily truncating the name
can create an invalid UTF-8 sequence. Normally this isn't a problem but if the
filesystem strictly enforces UTF-8 then the temp file cannot be created and the
transfer fails.
An example of the problem is:
sending incremental file list
MS_R?j.icon
rsync: mkstemp "/fan/data/.MS_R\#303.001058" failed: Permission denied (13)
? in UTF-8 is \#303\#266.
We got around the problem by specifying --inplace which avoids the temp file.
I think that the easiest way to handle the problem is to replace all characters
in the file name wi...