2011-03-08 Ramon Novoa <rnovoa@artica.es>

* modules/pandora_module_regexp.cc: Added support for extended regular
	  expressions.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4068 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
Ramon Novoa 2011-03-08 15:50:00 +00:00
parent 2608334f05
commit d1d4e002dd
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2011-03-08 Ramon Novoa <rnovoa@artica.es>
* modules/pandora_module_regexp.cc: Added support for extended regular
expressions.
2010-12-10 Ramon Novoa <rnovoa@artica.es>
* bin/util/pandora_update.exe: Updated. Some paths may have been wrong.

View File

@ -42,7 +42,7 @@ Pandora_Module_Regexp::Pandora_Module_Regexp (string name, string source, string
this->source = source;
// Compile the regular expression
if (regcomp (&this->regexp, pattern.c_str (), 0) != 0) {
if (regcomp (&this->regexp, pattern.c_str (), REG_EXTENDED) != 0) {
pandoraLog ("Invalid regular expression %s", pattern.c_str ());
}