Mercurial > gftp.yaz
diff lib/bookmark.c @ 516:fbb5a02beddb
2004-7-26 Brian Masney <masneyb@gftp.org>
* lib/config_file.c lib/local.c lib/ftps.c lib/gftp.h lib/httpcommon.h
lib/https.c lib/misc.c lib/protocols.c lib/pty.c lib/rfc2068.c
lib/rfc959.c lib/sshv2.c - various fixes found through a static code
analysis checker. (some signed/unsigned fixes, removed unneeded casts,
removed unneeded variables, more consistency, largefile fixes). Thanks
to Derek M Jones for running the static code analysis for me
* lib/cache.c - s/remove/del_entry/g
* lib/bookmark.c lib/protocols.c (gftp_parse_bookmark) - allow
the third parameter of this function to be a NULL pointer
| author | masneyb |
|---|---|
| date | Tue, 27 Jul 2004 02:46:54 +0000 |
| parents | eedc2c5727fa |
| children | b2b4f5fa8fc7 |
line wrap: on
line diff
--- a/lib/bookmark.c Mon Jul 26 09:51:07 2004 +0000 +++ b/lib/bookmark.c Tue Jul 27 02:46:54 2004 +0000 @@ -25,7 +25,6 @@ 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); @@ -43,7 +42,7 @@ else pos = url; - return (gftp_parse_bookmark (request, NULL, pos, &update_local)); + return (gftp_parse_bookmark (request, NULL, pos, NULL)); }
