# HG changeset patch # User Daniel Atallah # Date 1155867879 0 # Node ID 6dd5b199a400542d3e48c0c1ec00a4b292bbdafd # Parent 6672fdf310b2f0866d1f4322344ca384bfeee60b [gaim-migrate @ 16825] deryni noticed a missing ')' (it turns out I had SASL disabled) committer: Tailor Script diff -r 6672fdf310b2 -r 6dd5b199a400 src/protocols/jabber/auth.c --- a/src/protocols/jabber/auth.c Fri Aug 18 01:55:26 2006 +0000 +++ b/src/protocols/jabber/auth.c Fri Aug 18 02:24:39 2006 +0000 @@ -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;