Need to convert filenames from the filesystem encoding

This commit is contained in:
Pierre Pronchery 2007-08-03 03:55:46 +00:00
parent 20900ad6e0
commit 3f81e3cb20
2 changed files with 2 additions and 2 deletions

View File

@ -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]);

View File

@ -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]);