diff libpurple/protocols/jabber/auth_scram.c @ 31258: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 09ca9dfb2cfe
children
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;
 }