summaryrefslogtreecommitdiffstats
path: root/tools/syslogd.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/syslogd.h')
-rw-r--r--tools/syslogd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/syslogd.h b/tools/syslogd.h
index ecaaec34..8b9bd131 100644
--- a/tools/syslogd.h
+++ b/tools/syslogd.h
@@ -73,6 +73,7 @@ struct filed {
FIOP_REGEX = 4, /* matches a (BRE) regular expression? */
FIOP_EREREGEX = 5 /* matches a ERE regular expression? */
} operation;
+ regex_t *regex_cache; /* cache for compiled REs, if such are used */
cstr_t *pCSCompValue; /* value to "compare" against */
char isNegated; /* actually a boolean ;) */
} prop;
@@ -80,7 +81,6 @@ struct filed {
} f_filterData;
linkedList_t llActList; /* list of configured actions */
-regex_t *regex_cache;
};