dect
/
asterisk
Archived
13
0
Fork 0

Look for faxexten in the main context, too (bug #3634)

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@5100 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
markster 2005-02-28 00:18:28 +00:00
parent c33ca69a5d
commit b028566d22
1 changed files with 1 additions and 1 deletions

View File

@ -4193,7 +4193,7 @@ struct ast_frame *zt_read(struct ast_channel *ast)
if (!p->faxhandled) {
p->faxhandled++;
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)
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 */