diff libgaim/sslconn.c @ 14262:baff095b146c

[gaim-migrate @ 16944] Rename GaimProxyConnectInfo to GaimProxyConnectData, and change the variables from connect_info to connect_data. Sorry, but I wanted to get this right before it becomes permanent. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Mon, 21 Aug 2006 05:25:44 +0000
parents 60b1bc8dbf37
children 118fd0dc5b6e
line wrap: on
line diff
--- a/libgaim/sslconn.c	Mon Aug 21 05:07:42 2006 +0000
+++ b/libgaim/sslconn.c	Mon Aug 21 05:25:44 2006 +0000
@@ -73,7 +73,7 @@
 	GaimSslOps *ops;
 
 	gsc = data;
-	gsc->connect_info = NULL;
+	gsc->connect_data = NULL;
 
 	if (source < 0)
 	{
@@ -117,9 +117,9 @@
 	gsc->connect_cb      = func;
 	gsc->error_cb        = error_func;
 
-	gsc->connect_info = gaim_proxy_connect(account, host, port, gaim_ssl_connect_cb, gsc);
+	gsc->connect_data = gaim_proxy_connect(account, host, port, gaim_ssl_connect_cb, gsc);
 
-	if (gsc->connect_info == NULL)
+	if (gsc->connect_data == NULL)
 	{
 		g_free(gsc->host);
 		g_free(gsc);
@@ -192,8 +192,8 @@
 	ops = gaim_ssl_get_ops();
 	(ops->close)(gsc);
 
-	if (gsc->connect_info != NULL)
-		gaim_proxy_connect_cancel(gsc->connect_info);
+	if (gsc->connect_data != NULL)
+		gaim_proxy_connect_cancel(gsc->connect_data);
 
 	if (gsc->inpa > 0)
 		gaim_input_remove(gsc->inpa);