# HG changeset patch # User masneyb # Date 1064227208 0 # Node ID 70d0c9a2e424fd47dde175724f2ea5b405182674 # Parent 5810b0f97eee69be1f226628fa9f63fbf6be8370 2003-9-21 Brian Masney * src/gtk/menu-items.c (dosave_directory_listing) - fixed a bug that would occur when saving directory listings to a file, the last filename in the list was never written to the file (from Aurelien Jarno ) diff -r 5810b0f97eee -r 70d0c9a2e424 ChangeLog --- a/ChangeLog Sun Sep 21 17:33:45 2003 +0000 +++ b/ChangeLog Mon Sep 22 10:40:08 2003 +0000 @@ -1,4 +1,9 @@ 2003-9-21 Brian Masney + * src/gtk/menu-items.c (dosave_directory_listing) - fixed a bug that + would occur when saving directory listings to a file, the last filename + in the list was never written to the file + (from Aurelien Jarno ) + * lib/protocols.c (gftp_parse_bookmark) lib/gftp.h lib/bookmark.c src/gtk/bookmarks.c - added pointer to refresh_local variable that is enabled if the local directory was changed. In src/gtk/bookmarks.c, if @@ -1512,7 +1517,7 @@ * cvsclean - added this script - * *.[ch] - added $Id: ChangeLog,v 1.140 2003/09/21 17:33:44 masneyb Exp $ tags + * *.[ch] - added $Id: ChangeLog,v 1.141 2003/09/22 10:40:06 masneyb Exp $ tags * debian/* - updated files from Debian maintainer diff -r 5810b0f97eee -r 70d0c9a2e424 src/gtk/menu-items.c --- a/src/gtk/menu-items.c Sun Sep 21 17:33:45 2003 +0000 +++ b/src/gtk/menu-items.c Mon Sep 22 10:40:08 2003 +0000 @@ -223,7 +223,7 @@ } for (templist = str->wdata->files; - templist->next != NULL; + templist != NULL; templist = templist->next) { tempfle = templist->data;