From: Moises Silva Date: Fri, 12 Mar 2010 21:57:40 +0000 (+0000) Subject: add missing mfcr2_skip_category setting X-Git-Tag: 11.0.0-beta1~3297 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=828bdd8929000a8bba2be8ca5d4f65144a90b9dd;p=thirdparty%2Fasterisk.git add missing mfcr2_skip_category setting git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@252088 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_dahdi.c b/channels/chan_dahdi.c index 40868cd602..76d1794c52 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")) {