From: <rl...@us...> - 2006-11-07 22:52:03
|
Revision: 17699 http://svn.sourceforge.net/gaim/?rev=17699&view=rev Author: rlaager Date: 2006-11-07 14:51:58 -0800 (Tue, 07 Nov 2006) Log Message: ----------- The documentation for g_utf8_collate_key() says to use strcmp(), so we should do that. Modified Paths: -------------- trunk/gtk/gtkconv.c Modified: trunk/gtk/gtkconv.c =================================================================== --- trunk/gtk/gtkconv.c 2006-11-07 20:40:22 UTC (rev 17698) +++ trunk/gtk/gtkconv.c 2006-11-07 22:51:58 UTC (rev 17699) @@ -3765,7 +3765,7 @@ } else if (buddy1 != buddy2) { ret = (buddy1 > buddy2) ? -1 : 1; } else { - ret = strcasecmp(user1, user2); + ret = strcmp(user1, user2); } g_free(user1); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |