aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormoy <moy@f38db490-d61c-443f-a65b-d21fe96a405b>2010-03-12 21:57:40 +0000
committermoy <moy@f38db490-d61c-443f-a65b-d21fe96a405b>2010-03-12 21:57:40 +0000
commit19019525545806c438b9877c638a0bcc410267f5 (patch)
treed8c9ba3ce8dc22ab3174565fceca192643fdc852
parent3de3c51d28a4219b686509c48c4b743cb04f2839 (diff)
add missing mfcr2_skip_category setting
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@252088 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--channels/chan_dahdi.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/channels/chan_dahdi.c b/channels/chan_dahdi.c
index 40868cd60..76d1794c5 100644
--- a/channels/chan_dahdi.c
+++ b/channels/chan_dahdi.c
@@ -16595,6 +16595,8 @@ static int process_dahdi(struct dahdi_chan_conf *confp, const char *cat, struct
confp->mfcr2.forced_release = ast_true(v->value) ? 1 : 0;
} else if (!strcasecmp(v->name, "mfcr2_immediate_accept")) {
confp->mfcr2.immediate_accept = ast_true(v->value) ? 1 : 0;
+ } else if (!strcasecmp(v->name, "mfcr2_skip_category")) {
+ confp->mfcr2.skip_category_request = ast_true(v->value) ? 1 : 0;
} else if (!strcasecmp(v->name, "mfcr2_call_files")) {
confp->mfcr2.call_files = ast_true(v->value) ? 1 : 0;
} else if (!strcasecmp(v->name, "mfcr2_max_ani")) {