diff lib/gftp.h @ 609:d97e985f5dbe

2004-11-3 Brian Masney <masneyb@gftp.org> * lib/config_file.c (gftp_bookmarks_destroy) src/gtk/bookmarks.c (bm_apply_changes) - cleaned up the tree parsing code * lib/gftp.h lib/misc.c lib/config_file.c src/gtk/bookmarks.c - added free_node argument to gftp_free_bookmark() * lib/gftp.h src/gtk/bookmarks.c - added oldpath variable to the gftp_bookmarks structure.
author masneyb
date Wed, 03 Nov 2004 10:51:32 +0000
parents fa0838b22b14
children 43a0556c994f
line wrap: on
line diff
--- a/lib/gftp.h	Tue Nov 02 06:55:01 2004 +0000
+++ b/lib/gftp.h	Wed Nov 03 10:51:32 2004 +0000
@@ -579,8 +579,9 @@
 
 struct gftp_bookmarks_tag 
 {
-  char *path;                  /* Path */
-  char *hostname,              /* Our actual internet hostname */
+  char *path,                  /* Path */
+       *oldpath,               /* Old path name */
+       *hostname,              /* Our actual internet hostname */
        *protocol,              /* Protocol we will connect through */
        *remote_dir,            /* Initial directory */
        *local_dir,             /* Init local directory */
@@ -771,7 +772,8 @@
 
 char * base64_encode 			( char *str );
 
-void gftp_free_bookmark 		( gftp_bookmarks_var * entry );
+void gftp_free_bookmark 		( gftp_bookmarks_var * entry,
+					  int free_node );
 
 void gftp_shutdown			( void );