# HG changeset patch # User Paul Aurich # Date 1298570506 0 # Node ID 065d7229dff8500b2dbcadf0d51189ab66d4e4e1 # Parent 6b2b8cc8e7ae4410c18378abf30d98eee716b8ba jabber: Oops. Clearly the wrong escape sequence here for ','. I have no idea how I managed this. Thanks to Florian Zeitz for pointing this out in Prosody. diff -r 6b2b8cc8e7ae -r 065d7229dff8 libpurple/protocols/jabber/auth_scram.c --- a/libpurple/protocols/jabber/auth_scram.c Mon Feb 21 09:45:47 2011 +0000 +++ b/libpurple/protocols/jabber/auth_scram.c Thu Feb 24 18:01:46 2011 +0000 @@ -375,7 +375,7 @@ gchar *tmp, *tmp2; tmp = purple_strreplace(in, "=", "=3D"); - tmp2 = purple_strreplace(tmp, ",", "=2D"); + tmp2 = purple_strreplace(tmp, ",", "=2C"); g_free(tmp); return tmp2; }