summaryrefslogtreecommitdiff
path: root/res/res_hep.c
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2017-12-18 14:41:41 -0600
committerGerrit Code Review <gerrit2@gerrit.digium.api>2017-12-18 14:41:41 -0600
commit5224fd3ab4771fb178387c631cfa43e0c66a2d1c (patch)
tree3d3fb30cb1b0961d4b6c32fc870e70c40dd92b25 /res/res_hep.c
parent7909e372f8e5ca050b5bd069f9105de64f7575ca (diff)
parentbf2d35931d65c73bbb3efec5ce9d284a730cae5e (diff)
Merge changes from topic 'faster-aco'
* changes: aco: Minimize use of regex. aco: Create ways to minimize use of regex.
Diffstat (limited to 'res/res_hep.c')
-rw-r--r--res/res_hep.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/res/res_hep.c b/res/res_hep.c
index ba036d70f..4e548e274 100644
--- a/res/res_hep.c
+++ b/res/res_hep.c
@@ -258,8 +258,8 @@ static struct aco_type global_option = {
.type = ACO_GLOBAL,
.name = "general",
.item_offset = offsetof(struct module_config, general),
- .category_match = ACO_WHITELIST,
- .category = "^general$",
+ .category_match = ACO_WHITELIST_EXACT,
+ .category = "general",
};
struct aco_type *global_options[] = ACO_TYPES(&global_option);