1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-01 04:14:16 -04:00

Simplify itemcmp.

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4656 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Emanuele Giaquinta 2007-12-05 23:36:33 +00:00 committed by exg
parent dc8e204bd9
commit 519b8f1b8d

View File

@ -250,11 +250,9 @@ static int itemcmp(const char *patt, const char *item)
{
/* returns 0 on match, nonzero otherwise */
if (item == NULL)
return g_strcasecmp(patt, "*") != 0;
if (*patt == '*')
if (!strcmp(patt, "*"))
return 0;
return g_strcasecmp(patt, item);
return item ? g_strcasecmp(patt, item) : 1;
}
LOG_ITEM_REC *log_item_find(LOG_REC *log, int type, const char *item,