2010-08-04 Ramon Novoa <rnovoa@artica.es>

* modules/pandora_module.cc: Run action commands through cmd.exe.




git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3096 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
ramonn 2010-08-04 16:28:25 +00:00
parent 273725c7f6
commit bb4b4d594d
2 changed files with 11 additions and 0 deletions

View File

@ -1,8 +1,16 @@
2010-08-04 Ramon Novoa <rnovoa@artica.es>
* modules/pandora_module.cc: Run action commands through cmd.exe.
2010-08-04 Sancho Lerena <slerena@artica.es>
* win32/bin/util/df_percent.vbs: New VBS plugin to detect all
hardrives and return free disk on %.
2010-08-04 Ramon Novoa <rnovoa@artica.es>
* modules/pandora_module.cc: Run action commands through cmd.exe.
2010-08-04 Ramon Novoa <rnovoa@artica.es>
* modules/pandora_module.cc: Changed sscanf format strings. They did

View File

@ -669,6 +669,9 @@ Pandora_Module::addCondition (string condition) {
} else {
pandoraDebug ("Invalid module condition: %s", condition.c_str ());
}
/* Run commands through cmd.exe */
cond->command = "cmd.exe /c \"" + cond->command + "\"";
}
/**