From: <dat...@us...> - 2006-08-18 02:24:46
|
Revision: 16825 Author: datallah Date: 2006-08-17 19:24:39 -0700 (Thu, 17 Aug 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16825&view=rev Log Message: ----------- deryni noticed a missing ')' (it turns out I had SASL disabled) Modified Paths: -------------- trunk/src/protocols/jabber/auth.c Modified: trunk/src/protocols/jabber/auth.c =================================================================== --- trunk/src/protocols/jabber/auth.c 2006-08-18 01:55:26 UTC (rev 16824) +++ trunk/src/protocols/jabber/auth.c 2006-08-18 02:24:39 UTC (rev 16825) @@ -265,7 +265,7 @@ */ if (mech && strlen(mech) > 0) { char *pos; - if ((pos = strstr(js->sasl_mechs->str, mech)) { + if ((pos = strstr(js->sasl_mechs->str, mech))) { g_string_erase(js->sasl_mechs, pos-js->sasl_mechs->str, strlen(mech)); } again = TRUE; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |