changeset 7469:603a58cd23dc

[gaim-migrate @ 8082] This should fix the problem where some MSN users in the buddy list were showing the offline emblem, indicating that gaim and the server disagree as to whether or not the buddy should be there. That icon was for testing purposes, and should never have been seen by a user. The problem was that in the code, we were looking for a list of all buddies, and would add new ones if not found. The problem was that we'd get duplicates, as some would be in foo@bar.com form, and some in FOO@bar.com form, or mixed-case, or whatever. Now, our msn_normalize() converts a string to lowercase first. We'll see how well this works, but it fixed the problem here. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Mon, 10 Nov 2003 22:13:18 +0000
parents 4ab8ec97576c
children ad6435eccf2b
files src/protocols/msn/msn.c
diffstat 1 files changed, 5 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/protocols/msn/msn.c	Mon Nov 10 19:36:13 2003 +0000
+++ b/src/protocols/msn/msn.c	Mon Nov 10 22:13:18 2003 +0000
@@ -1210,12 +1210,17 @@
 msn_normalize(const GaimAccount *account, const char *str)
 {
 	static char buf[BUF_LEN];
+	char *tmp;
 
 	g_return_val_if_fail(str != NULL, NULL);
 
 	g_snprintf(buf, sizeof(buf), "%s%s", str,
 			   (strchr(str, '@') ? "" : "@hotmail.com"));
 
+	tmp = g_utf8_strdown(buf, -1);
+	strncpy(buf, tmp, sizeof(buf));
+	g_free(tmp);
+
 	return buf;
 }