Use glob matching for activity_hide_targets

spaces vs tabs!

strarray_find* needs to return -1 if no index found
This commit is contained in:
Jari Matilainen 2016-03-11 09:12:38 +01:00
commit 94b823c3cd
3 changed files with 20 additions and 1 deletions

View file

@ -464,7 +464,7 @@ gboolean strarray_find_dest(char **array, const TEXT_DEST_REC *dest)
if (dest->server_tag != NULL) {
char *tagtarget = g_strdup_printf("%s/%s", dest->server_tag, dest->target);
int ret = strarray_find(array, tagtarget);
int ret = strarray_find_glob(array, tagtarget);
g_free(tagtarget);
if (ret != -1)
return TRUE;