# HG changeset patch # User masneyb # Date 1067121468 0 # Node ID ab4c90a561fcab1a4cc09d7411920d8371f88da0 # Parent 4747f621b79ba7c1fe4e15d545aca59fd9276650 2003-10-25 Brian Masney * src/gtk/menu-items.c (dosave_directory_listing) - when saving the directory listing, skip over the files that are not shown based on the current filespec. diff -r 4747f621b79b -r ab4c90a561fc ChangeLog --- a/ChangeLog Sat Oct 25 21:33:46 2003 +0000 +++ b/ChangeLog Sat Oct 25 22:37:48 2003 +0000 @@ -1,4 +1,8 @@ 2003-10-25 Brian Masney + * src/gtk/menu-items.c (dosave_directory_listing) - when saving the + directory listing, skip over the files that are not shown based on the + current filespec. + * src/gtk/transfer.c src/gtk/gftp-gtk.h src/gtk/view_dialog.c - when editing a remote file, if the user chooses to upload the changes, make sure the upload is not sent to the current directory on the remote @@ -1614,7 +1618,7 @@ * cvsclean - added this script - * *.[ch] - added $Id: ChangeLog,v 1.156 2003/10/25 21:33:40 masneyb Exp $ tags + * *.[ch] - added $Id: ChangeLog,v 1.157 2003/10/25 22:37:47 masneyb Exp $ tags * debian/* - updated files from Debian maintainer diff -r 4747f621b79b -r ab4c90a561fc src/gtk/menu-items.c --- a/src/gtk/menu-items.c Sat Oct 25 21:33:46 2003 +0000 +++ b/src/gtk/menu-items.c Sat Oct 25 22:37:48 2003 +0000 @@ -228,6 +228,9 @@ { tempfle = templist->data; + if (!tempfle->shown) + continue; + tempstr = gftp_gen_ls_string (tempfle, NULL, NULL); fprintf (fd, "%s\n", tempstr); g_free (tempstr);