|
From: <dat...@us...> - 2007-03-07 02:36:50
|
Revision: 18200
http://svn.sourceforge.net/gaim/?rev=18200&view=rev
Author: datallah
Date: 2007-03-06 18:36:48 -0800 (Tue, 06 Mar 2007)
Log Message:
-----------
Simon Wilkinson noticed that this check was invalid and caused authentications to hang.
Modified Paths:
--------------
trunk/libgaim/protocols/jabber/jabber.c
Modified: trunk/libgaim/protocols/jabber/jabber.c
===================================================================
--- trunk/libgaim/protocols/jabber/jabber.c 2007-03-06 18:21:48 UTC (rev 18199)
+++ trunk/libgaim/protocols/jabber/jabber.c 2007-03-07 02:36:48 UTC (rev 18200)
@@ -283,7 +283,7 @@
sasl_encode(js->sasl, &data[pos], towrite, &out, &olen);
pos += towrite;
- if (js->writeh > 0)
+ if (js->writeh == 0)
ret = jabber_do_send(js, out, olen);
else {
ret = -1;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|