comparison src/gtkprivacy.c @ 10425:9903182f2aac

[gaim-migrate @ 11677] Added a util function to read an xml file and parse it into an xmlnode tree Changed accounts.xml reading to use xmlnode's committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sun, 26 Dec 2004 22:52:52 +0000
parents 5879593a6a10
children f175ff63d571
comparison
equal deleted inserted replaced
10424:108151be77a3 10425:9903182f2aac
121 GSList *l; 121 GSList *l;
122 122
123 for (l = list; l != NULL; l = l->next) { 123 for (l = list; l != NULL; l = l->next) {
124 temp_name = (const char *)l->data; 124 temp_name = (const char *)l->data;
125 125
126 /* Should this use gaim_normalize()? */
126 if (!gaim_utf8_strcasecmp(name, temp_name)) 127 if (!gaim_utf8_strcasecmp(name, temp_name))
127 return temp_name; 128 return temp_name;
128 } 129 }
129 130
130 return NULL; 131 return NULL;