changeset 31707:065d7229dff8

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.
author Paul Aurich <paul@darkrain42.org>
date Thu, 24 Feb 2011 18:01:46 +0000
parents 6b2b8cc8e7ae
children 531bcead5652
files libpurple/protocols/jabber/auth_scram.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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;
 }