diff src/uicommon/gftpui.c @ 830:afbe37351940

2006-10-19 Brian Masney <masneyb@gftp.org> WARNING: The CVS version of gFTP is currently broken, especially for international users. This will be fixed in a few days. * src/gtk/gtkui.c src/gtk/gtkui_transfer.c src/gtk/misc-gtk.c lib/gftp.h lib/misc.c lib/protocols.c - removed code that converts the filename to UTF8. This will be handled by the library. Removed utf8_file member from the gftp_file structure. * lib/rfc959.c - convert the file or directory from UTF8 to the proper locale when sending a command to the server. * src/uicommon/gftpui.c src/gtk/menu-items.c lib/misc.c lib/gftp.h (gftp_gen_ls_string) - convert the filename from UTF8 to the proper locale before it is displayed to the user.
author masneyb
date Thu, 19 Oct 2006 11:41:04 +0000
parents 251682017c97
children 57aad6d4b304
line wrap: on
line diff
--- a/src/uicommon/gftpui.c	Sun Oct 15 18:45:06 2006 +0000
+++ b/src/uicommon/gftpui.c	Thu Oct 19 11:41:04 2006 +0000
@@ -621,7 +621,7 @@
       fle = templist->data;
 
       gftpui_lookup_file_colors (fle, &startcolor, &endcolor);
-      tempstr = gftp_gen_ls_string (fle, startcolor, endcolor);
+      tempstr = gftp_gen_ls_string (request, fle, startcolor, endcolor);
       request->logging_function (gftp_logging_misc_nolog, request, "%s\n",
                                  tempstr);
       g_free (tempstr);