summaryrefslogtreecommitdiff
path: root/channels
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 /channels
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 '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 210cf36c6..6e8ce354a 100644
--- a/channels/chan_motif.c
+++ b/channels/chan_motif.c
@@ -541,8 +541,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),