From: <sea...@us...> - 2006-07-10 18:02:52
|
Revision: 16477 Author: seanegan Date: 2006-07-10 11:02:48 -0700 (Mon, 10 Jul 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16477&view=rev Log Message: ----------- This problem seems to exist on gnutls too; there's really no need ever to try to send data after getting forcably disconnected anyway. Modified Paths: -------------- trunk/src/protocols/jabber/jabber.c Modified: trunk/src/protocols/jabber/jabber.c =================================================================== --- trunk/src/protocols/jabber/jabber.c 2006-07-10 06:59:51 UTC (rev 16476) +++ trunk/src/protocols/jabber/jabber.c 2006-07-10 18:02:48 UTC (rev 16477) @@ -919,15 +919,11 @@ { JabberStream *js = gc->proto_data; -/* This is for Adium. Gaim never uses OpenSSL, because of licensing issues, - * and our configure doesn't check for it. -- rlaager */ -#ifdef HAVE_OPENSSL /* If using OpenSSL, don't perform any actions on the ssl connection * if we were forcibly disconnected because it will crash. -- evands */ if (!gc->disconnect_timeout) -#endif - jabber_send_raw(js, "</stream:stream>", -1); + jabber_send_raw(js, "</stream:stream>", -1); if(js->gsc) { #ifdef HAVE_OPENSSL This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |