diff src/protocols/jabber/jabber.c @ 7274:448e39ace278

[gaim-migrate @ 7851] Added a parameter to gaim_ssl_connect() to specify an optional error callback. MSN takes advantage of it, but since I can't reproduce the errors here, I'm not positive it works. It should though! Famous last words. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Wed, 15 Oct 2003 06:32:13 +0000
parents deab8d8bbb4e
children 632cee95cc5c
line wrap: on
line diff
--- a/src/protocols/jabber/jabber.c	Wed Oct 15 06:11:26 2003 +0000
+++ b/src/protocols/jabber/jabber.c	Wed Oct 15 06:32:13 2003 +0000
@@ -337,7 +337,7 @@
 	gaim_input_remove(js->gc->inpa);
 	js->gc->inpa = 0;
 	js->gsc = gaim_ssl_connect_fd(js->gc->account, js->fd,
-			jabber_login_callback_ssl, js->gc);
+			jabber_login_callback_ssl, NULL, js->gc);
 }
 
 static void
@@ -382,7 +382,7 @@
 			&& gaim_ssl_is_supported()) {
 		js->gsc = gaim_ssl_connect(account, server,
 				gaim_account_get_int(account, "port", 5222),
-				jabber_login_callback_ssl, gc);
+				jabber_login_callback_ssl, NULL, gc);
 	}
 
 	if(!js->gsc) {
@@ -670,7 +670,7 @@
 			&& gaim_ssl_is_supported()) {
 		js->gsc = gaim_ssl_connect(account, server,
 				gaim_account_get_int(account, "port", 5222),
-				jabber_login_callback_ssl, gc);
+				jabber_login_callback_ssl, NULL, gc);
 	}
 
 	if(!js->gsc) {