comparison src/gtk/dnd.c @ 173:4c288d05b26a

2003-6-8 Brian Masney <masneyb@gftp.org> * lib/bookmark.c lib/gftp.h lib/https.c lib/local.c lib/misc.c lib/protocols.c lib/rfc2068.c lib/rfc959.c lib/sshv2.c src/text/gftp-text.c src/gtk/gftp-gtk.c - made the init function for all the protocols return an integer instead of nothing. If there was an error setting up the protocol, GFTP_EFATAL should be returned and the connection should be aborted. The HTTPS protocol uses this to return if SSL support was not compiled in * lib/protocols.c src/text/gftp-text.c src/gtk/dnd.c src/gtk/gftp-gtk.c src/gtk/menu-items.c - have gftp_parse_url() log the error messages to the user. This shouldn't have been done in the individual ports * lib/https.c - only initialize the SSL engine the first time a SSL connection is made.
author masneyb
date Mon, 09 Jun 2003 00:53:20 +0000
parents fe0b21c006f6
children 3f2203e70218
comparison
equal deleted inserted replaced
172:9273b56e7529 173:4c288d05b26a
50 50
51 if (gftp_parse_url (current_ftpdata, url) != 0 || 51 if (gftp_parse_url (current_ftpdata, url) != 0 ||
52 current_ftpdata->directory == NULL || 52 current_ftpdata->directory == NULL ||
53 (pos = strrchr (current_ftpdata->directory, '/')) == NULL) 53 (pos = strrchr (current_ftpdata->directory, '/')) == NULL)
54 { 54 {
55 ftp_log (gftp_logging_misc, NULL,
56 _("Drag-N-Drop: Ignoring url %s: Not a valid url\n"), url);
57 gftp_request_destroy (current_ftpdata, 1); 55 gftp_request_destroy (current_ftpdata, 1);
58 free_fdata (newfle); 56 free_fdata (newfle);
59 return (0); 57 return (0);
60 } 58 }
61 59
107 { 105 {
108 if (GFTP_IS_CONNECTED (current_wdata->request)) 106 if (GFTP_IS_CONNECTED (current_wdata->request))
109 disconnect (current_wdata); 107 disconnect (current_wdata);
110 108
111 ftp_connect (current_wdata, current_wdata->request, 1); 109 ftp_connect (current_wdata, current_wdata->request, 1);
112 }
113 else
114 {
115 ftp_log (gftp_logging_misc, NULL, _("Could not parse URL %s\n"),
116 selection_data->data);
117 } 110 }
118 } 111 }
119 } 112 }
120 113
121 114