Need to convert filenames from the filesystem encoding
This commit is contained in:
parent
20900ad6e0
commit
3f81e3cb20
|
@ -96,7 +96,7 @@ static int _copy(Prefs * prefs, int filec, char * filev[])
|
|||
|
||||
static void _copy_refresh(Copy * copy)
|
||||
{
|
||||
char buf[256];
|
||||
char buf[256]; /* FIXME convert to UTF-8 */
|
||||
double fraction;
|
||||
|
||||
snprintf(buf, sizeof(buf), "Copying file: %s", copy->filev[copy->cur]);
|
||||
|
|
|
@ -90,7 +90,7 @@ static int _move(Prefs * prefs, int filec, char * filev[])
|
|||
|
||||
static void _move_refresh(Move * move)
|
||||
{
|
||||
char buf[256];
|
||||
char buf[256]; /* FIXME convert to UTF-8 */
|
||||
double fraction;
|
||||
|
||||
snprintf(buf, sizeof(buf), "Moving file: %s", move->filev[move->cur]);
|
||||
|
|
Loading…
Reference in New Issue
Block a user