# HG changeset patch # User Christian Hammond # Date 1085602890 0 # Node ID 0d5206ffe86ad1fb76909ecd2fbd9e1701f37af9 # Parent 2b64986f882b1ef25b81f3174ca2db8ed74309a8 [gaim-migrate @ 9851] Fixed a privacy-related bug in MSN that affected blocking/permitting, which was due to case-sensitive string comparisons. Patch by Gudmundur Olafsson. 13:19:27 I block myself: aquatopia@hotmail.com 13:19:43 and when I wanna unblock me, I go to the tools | privacy window 13:20:05 and I add: Aquatopia@hotmail.com (I registered to MSN with an uppercase A) 13:20:28 the client compares aquatopia@hotmail.com from the server to Aquatopia@hotmail.com committer: Tailor Script diff -r 2b64986f882b -r 0d5206ffe86a COPYRIGHT --- a/COPYRIGHT Wed May 26 19:54:32 2004 +0000 +++ b/COPYRIGHT Wed May 26 20:21:30 2004 +0000 @@ -93,6 +93,7 @@ Padraig O'Briain Christopher (siege) O'Brien Jon Oberheide +Gudmundur Bjarni Olafsson Nathan (pianocomp81) Owens Matt Pandina Ricardo Fernandez Pascual diff -r 2b64986f882b -r 0d5206ffe86a ChangeLog --- a/ChangeLog Wed May 26 19:54:32 2004 +0000 +++ b/ChangeLog Wed May 26 20:21:30 2004 +0000 @@ -33,6 +33,8 @@ * Novell protocol works on big endian machines (Novell) * Massive rewrite of MSN support, which should fix a number of issues and make errors easier to interpret (Felipe Contreras) + * Fixed a privacy-related bug in MSN that affected blocking/permitting, + which was due to case-sensitive string comparisons (Gudmundur Olafsson) * ALT-F works correctly in the System Log Viewer (Stu Tomlinson) * New tabs should scroll correctly again (Tim Ringenbach) * Dialogs opened from a conversation window are now closed when diff -r 2b64986f882b -r 0d5206ffe86a src/protocols/msn/msn.c --- a/src/protocols/msn/msn.c Wed May 26 19:54:32 2004 +0000 +++ b/src/protocols/msn/msn.c Wed May 26 20:21:30 2004 +0000 @@ -812,7 +812,7 @@ return; } - if (g_slist_find_custom(gc->account->deny, who, (GCompareFunc)strcmp)) + if (g_slist_find_custom(gc->account->deny, who, (GCompareFunc)strcasecmp)) { gaim_debug_info("msn", "Moving %s from BL to AL\n", who); gaim_privacy_deny_remove(gc->account, who, TRUE);