mirror of
https://github.com/irssi/irssi.git
synced 2024-10-27 05:20:20 -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:
parent
dc8e204bd9
commit
519b8f1b8d
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user