small bugfix
This commit is contained in:
parent
cef68cf821
commit
17cbec1f63
@ -328,7 +328,7 @@ void EventsMngr::parseValue(const char *sz)
|
||||
switch(condIter->second.type)
|
||||
{
|
||||
case '=': if (!strcmp(sz, condIter->second.sValue.c_str())) skip=true; break;
|
||||
case '!': if (!strstr(sz, condIter->second.sValue.c_str())) skip=true; break;
|
||||
case '!': if (strcmp(sz, condIter->second.sValue.c_str())) skip=true; break;
|
||||
case '&': if (strstr(sz, condIter->second.sValue.c_str())) skip=true; break;
|
||||
}
|
||||
if (skip)
|
||||
|
Loading…
Reference in New Issue
Block a user