Mercurial > gftp.yaz
diff src/text/textui.c @ 521:739afd9df73c
2004-7-27 Brian Masney <masneyb@gftp.org>
* lib/rfc959.c src/gtk/misc-gtk.c src/gtk/view_dialog.c - fixed more
comparsions between signed and unsigned integers
* lib/sshv2.c (sshv2_buffer_get_int32) - allow an expected response
value of 0. If it does not match, call sshv2_wrong_response().
SSH_FX_OK is set to 0, so this value was not being checked
* src/gtk/gtkui.c src/text/textui.c src/uicommon/gftpui.h - renamed the
clear_cache argument of gftpui_refresh() to clear_cache_entry. There is
already a function named clear_cache()
| author | masneyb |
|---|---|
| date | Wed, 28 Jul 2004 02:47:25 +0000 |
| parents | e55d8b35d809 |
| children | 1ad4eb5c29de |
line wrap: on
line diff
--- a/src/text/textui.c Wed Jul 28 02:19:00 2004 +0000 +++ b/src/text/textui.c Wed Jul 28 02:47:25 2004 +0000 @@ -40,13 +40,13 @@ void -gftpui_refresh (void *uidata, int clear_cache) +gftpui_refresh (void *uidata, int clear_cache_entry) { gftp_request * request; request = uidata; /* Note: uidata is set to the request in gftp_text.c */ - if (clear_cache) + if (clear_cache_entry) gftp_delete_cache_entry (request, NULL, 0); }
