comparison src/gtk/menu-items.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 49cfbe02926b
children 19dacfb69433
comparison
equal deleted inserted replaced
829:74f49d528c68 830:afbe37351940
114 tempfle = templist->data; 114 tempfle = templist->data;
115 115
116 if (!tempfle->shown) 116 if (!tempfle->shown)
117 continue; 117 continue;
118 118
119 tempstr = gftp_gen_ls_string (tempfle, NULL, NULL); 119 tempstr = gftp_gen_ls_string (NULL, tempfle, NULL, NULL);
120 fprintf (fd, "%s\n", tempstr); 120 fprintf (fd, "%s\n", tempstr);
121 g_free (tempstr); 121 g_free (tempstr);
122 } 122 }
123 123
124 fclose (fd); 124 fclose (fd);