diff lib/bookmark.c @ 275:5810b0f97eee

2003-9-21 Brian Masney <masneyb@gftp.org> * 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 the local directory was changed, refresh the directory listing.
author masneyb
date Sun, 21 Sep 2003 17:33:45 +0000
parents b42e7233533a
children eedc2c5727fa
line wrap: on
line diff
--- a/lib/bookmark.c	Sun Sep 21 16:50:49 2003 +0000
+++ b/lib/bookmark.c	Sun Sep 21 17:33:45 2003 +0000
@@ -25,6 +25,7 @@
 bookmark_parse_url (gftp_request * request, const char * url)
 {
   const char * pos;
+  int update_local;
 
   g_return_val_if_fail (request != NULL, GFTP_EFATAL);
   g_return_val_if_fail (url != NULL, GFTP_EFATAL);
@@ -42,7 +43,7 @@
   else
     pos = url;
 
-  return (gftp_parse_bookmark (request, NULL, pos));
+  return (gftp_parse_bookmark (request, NULL, pos, &update_local));
 }