diff src/protocols/yahoo/yahoo_filexfer.c @ 9227:9171e528d7e5

[gaim-migrate @ 10023] Patch by Don Seiler (aka rizzo) to add two additional parameters to gaim_url_parse(), which are used for storing the username and password from the URL, if they exist. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Mon, 07 Jun 2004 04:01:00 +0000
parents 76125b842b23
children 04a3e9e869ee
line wrap: on
line diff
--- a/src/protocols/yahoo/yahoo_filexfer.c	Sun Jun 06 20:56:54 2004 +0000
+++ b/src/protocols/yahoo/yahoo_filexfer.c	Mon Jun 07 04:01:00 2004 +0000
@@ -441,7 +441,7 @@
 	/* Setup the Yahoo-specific file transfer data */
 	xfer_data = g_new0(struct yahoo_xfer_data, 1);
 	xfer_data->gc = gc;
-	if (!gaim_url_parse(url, &(xfer_data->host), &(xfer_data->port), &(xfer_data->path))) {
+	if (!gaim_url_parse(url, &(xfer_data->host), &(xfer_data->port), &(xfer_data->path), NULL, NULL)) {
 		g_free(xfer_data);
 		return;
 	}