mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-18 18:58:22 +00:00
Look for faxexten in the main context, too (bug #3634)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5100 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -4193,7 +4193,7 @@ struct ast_frame *zt_read(struct ast_channel *ast)
|
|||||||
if (!p->faxhandled) {
|
if (!p->faxhandled) {
|
||||||
p->faxhandled++;
|
p->faxhandled++;
|
||||||
if (strcmp(ast->exten, "fax")) {
|
if (strcmp(ast->exten, "fax")) {
|
||||||
if (ast_exists_extension(ast, ast->context, "fax", 1, ast->cid.cid_num)) {
|
if (ast_exists_extension(ast, ast_strlen_zero(ast->macrocontext) ? ast->context : ast->macrocontext, "fax", 1, ast->cid.cid_num)) {
|
||||||
if (option_verbose > 2)
|
if (option_verbose > 2)
|
||||||
ast_verbose(VERBOSE_PREFIX_3 "Redirecting %s to fax extension\n", ast->name);
|
ast_verbose(VERBOSE_PREFIX_3 "Redirecting %s to fax extension\n", ast->name);
|
||||||
/* Save the DID/DNIS when we transfer the fax call to a "fax" extension */
|
/* Save the DID/DNIS when we transfer the fax call to a "fax" extension */
|
||||||
|
Reference in New Issue
Block a user