Merge branch 'develop' of https://github.com/pandorafms/pandorafms into develop

This commit is contained in:
fbsanchez 2015-09-08 10:45:58 +02:00
commit 3ff6d5aa6a
1 changed files with 2 additions and 2 deletions
pandora_agents/win32/modules

View File

@ -1170,7 +1170,7 @@ Pandora_Module::addGenericCondition (string condition, list<Condition *> **condi
cond->string_value = string_value;
cond->command = command;
cond->command = "cmd.exe /c \"" + cond->command + "\"";
if (regcomp (&(cond->regexp), string_value, 0) != 0) {
if (regcomp (&(cond->regexp), string_value, REG_EXTENDED) != 0) {
pandoraDebug ("Invalid regular expression %s", string_value);
delete (cond);
return;
@ -1242,7 +1242,7 @@ Pandora_Module::addIntensiveCondition (string condition) {
} else if (sscanf (condition.c_str (), "=~ %1023s", string_value) == 1) {
cond->operation = "=~";
cond->string_value = string_value;
if (regcomp (&(cond->regexp), string_value, 0) != 0) {
if (regcomp (&(cond->regexp), string_value, REG_EXTENDED) != 0) {
pandoraDebug ("Invalid regular expression %s", string_value);
delete (cond);
return;