diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/util_filter.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/util_filter.h b/include/util_filter.h index 134c803a8c..7d422369e2 100644 --- a/include/util_filter.h +++ b/include/util_filter.h @@ -284,9 +284,9 @@ struct ap_filter_provider_t { /** The dispatch match itself - union member depends on match_type */ union { - const char *c; - regex_t *r; - int i; + const char *string; + regex_t *regex; + int number; } match; /** The filter that implements this provider */ |