summaryrefslogtreecommitdiff
path: root/channels
diff options
context:
space:
mode:
authorJenkins2 <jenkins2@gerrit.asterisk.org>2017-12-18 13:32:31 -0600
committerGerrit Code Review <gerrit2@gerrit.digium.api>2017-12-18 13:32:31 -0600
commit56a931f64c1340ab4a2c10ee363e86fd106de4ca (patch)
tree0477c13509b499f92fd381a10fca36856f26df81 /channels
parentb6d03c086bf86880c2b376b40c0e99e68da65f50 (diff)
parent501f4dcdd8790283e1db809e23133dbeb3a1f27c (diff)
Merge "aco: Minimize use of regex." into 13
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_motif.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/channels/chan_motif.c b/channels/chan_motif.c
index 314103765..939380771 100644
--- a/channels/chan_motif.c
+++ b/channels/chan_motif.c
@@ -543,8 +543,8 @@ static int jingle_endpoint_cmp(void *obj, void *arg, int flags)
static struct aco_type endpoint_option = {
.type = ACO_ITEM,
.name = "endpoint",
- .category_match = ACO_BLACKLIST,
- .category = "^general$",
+ .category_match = ACO_BLACKLIST_EXACT,
+ .category = "general",
.item_alloc = jingle_endpoint_alloc,
.item_find = jingle_endpoint_find,
.item_offset = offsetof(struct jingle_config, endpoints),