small bugfix

This commit is contained in:
Pavol Marko 2004-02-27 11:06:56 +00:00
parent cef68cf821
commit 17cbec1f63

View File

@ -328,7 +328,7 @@ void EventsMngr::parseValue(const char *sz)
switch(condIter->second.type) switch(condIter->second.type)
{ {
case '=': if (!strcmp(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; 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 (strstr(sz, condIter->second.sValue.c_str())) skip=true; break;
} }
if (skip) if (skip)