correct wrong function prefixes: gslist -> i_slist

This commit is contained in:
Ailin Nemui 2021-01-05 21:35:18 +01:00
commit b5ddc55fe6
17 changed files with 47 additions and 53 deletions

View file

@ -46,7 +46,7 @@ static GSList *mask_add_once(GSList *list, const char *mask)
str = ptr == NULL ? g_strdup(mask) :
g_strndup(mask, (int) (ptr-mask));
if (gslist_find_icase_string(list, str) == NULL)
if (i_slist_find_icase_string(list, str) == NULL)
return g_slist_append(list, str);
g_free(str);