Code

Merge remote-tracking branch 'github/pr/387'
[collectd.git] / src / utils_match.c
index 4d4b57d08051b31e91dceb0a8bf43a4e67695dfe..062bcfe37fd152851eb11eb03464daabe0b53ae2 100644 (file)
@@ -228,7 +228,7 @@ cu_match_t *match_create_callback (const char *regex, const char *excluderegex,
     return (NULL);
   memset (obj, '\0', sizeof (cu_match_t));
 
-  status = regcomp (&obj->regex, regex, REG_EXTENDED);
+  status = regcomp (&obj->regex, regex, REG_EXTENDED | REG_NEWLINE);
   if (status != 0)
   {
     ERROR ("Compiling the regular expression \"%s\" failed.", regex);