Merge "aco: Minimize use of regex." into 13

This commit is contained in:
Jenkins2
2017-12-18 13:32:31 -06:00
committed by Gerrit Code Review
17 changed files with 124 additions and 73 deletions

View File

@@ -260,8 +260,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);