summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 524a581)
raw | patch | inline | side by side (parent: 524a581)
author | Florian Forster <octo@huhu.verplant.org> | |
Wed, 24 Mar 2010 15:58:21 +0000 (16:58 +0100) | ||
committer | Florian Forster <octo@huhu.verplant.org> | |
Wed, 24 Mar 2010 15:58:21 +0000 (16:58 +0100) |
src/curl.c | patch | blob | history |
diff --git a/src/curl.c b/src/curl.c
index 6e2811c81d2555060755ea562297f7cbedefd76f..a533e147b1b6e2af1dcf00ff7634667b20bf4784 100644 (file)
--- a/src/curl.c
+++ b/src/curl.c
struct web_match_s /* {{{ */
{
char *regex;
+ char *exclude_regex;
int dstype;
char *type;
char *instance;
if (strcasecmp ("Regex", child->key) == 0)
status = cc_config_add_string ("Regex", &match->regex, child);
+ else if (strcasecmp ("ExcludeRegex", child->key) == 0)
+ status = cc_config_add_string ("ExcludeRegex", &match->exclude_regex, child);
else if (strcasecmp ("DSType", child->key) == 0)
status = cc_config_add_match_dstype (&match->dstype, child);
else if (strcasecmp ("Type", child->key) == 0)
if (status != 0)
return (status);
- match->match = match_create_simple (match->regex, NULL, match->dstype);
+ match->match = match_create_simple (match->regex, match->exclude_regex,
+ match->dstype);
if (match->match == NULL)
{
ERROR ("curl plugin: tail_match_add_match_simple failed.");