Mercurial > pidgin
changeset 14175:6dd5b199a400
[gaim-migrate @ 16825]
deryni noticed a missing ')' (it turns out I had SASL disabled)
committer: Tailor Script <tailor@pidgin.im>
author | Daniel Atallah <daniel.atallah@gmail.com> |
---|---|
date | Fri, 18 Aug 2006 02:24:39 +0000 |
parents | 6672fdf310b2 |
children | 27ead1cf6dcb |
files | src/protocols/jabber/auth.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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;