comparison src/gtk/misc-gtk.c @ 169:d40f9db52cdf

2003-6-8 Brian Masney <masneyb@gftp.org> * lib/https.c lib/options.h lib/sslcommon.c - make sure USE_SSL is defined before using any SSL functions * lib/gftp.h lib/protocols.c lib/rfc2068.c lib/sshv2.c lib/sslcommon.c lib/rfc959.c - make sure we use request->datafd for the connection. Removed sockfd from gftp_request structure * lib/rfc959.c - add data_connection to rfc959_parms structure. Use this for the FTP data connection * src/text/gftp-text.c - fixes for username/password prompt * src/gtk/misc-gtk.c src/gtk/transfer.c - s/sockfd/datafd/g * configure.in - added lib/Makefile (forgot to commit last time) * Makefile.am - added intl to SUBDIRS
author masneyb
date Sun, 08 Jun 2003 15:49:02 +0000
parents c505d9ba9d53
children 33b394ebba68
comparison
equal deleted inserted replaced
168:c505d9ba9d53 169:d40f9db52cdf
685 685
686 686
687 int 687 int
688 check_reconnect (gftp_window_data *wdata) 688 check_reconnect (gftp_window_data *wdata)
689 { 689 {
690 return (wdata->request->cached && wdata->request->sockfd < 0 && 690 return (wdata->request->cached && wdata->request->datafd < 0 &&
691 !wdata->request->always_connected && 691 !wdata->request->always_connected &&
692 !ftp_connect (wdata, wdata->request, 0) ? -1 : 0); 692 !ftp_connect (wdata, wdata->request, 0) ? -1 : 0);
693 } 693 }
694 694
695 695