comparison 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
comparison
equal deleted inserted replaced
520:e67a52327b24 521:739afd9df73c
38 *end_color = GFTPUI_COMMON_COLOR_DEFAULT; 38 *end_color = GFTPUI_COMMON_COLOR_DEFAULT;
39 } 39 }
40 40
41 41
42 void 42 void
43 gftpui_refresh (void *uidata, int clear_cache) 43 gftpui_refresh (void *uidata, int clear_cache_entry)
44 { 44 {
45 gftp_request * request; 45 gftp_request * request;
46 46
47 request = uidata; /* Note: uidata is set to the request in gftp_text.c */ 47 request = uidata; /* Note: uidata is set to the request in gftp_text.c */
48 48
49 if (clear_cache) 49 if (clear_cache_entry)
50 gftp_delete_cache_entry (request, NULL, 0); 50 gftp_delete_cache_entry (request, NULL, 0);
51 } 51 }
52 52
53 53
54 void * 54 void *