]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
correctly jump to fax extension when inside of a macro (bug #4471)
authorRussell Bryant <russell@russellbryant.com>
Wed, 22 Jun 2005 14:01:26 +0000 (14:01 +0000)
committerRussell Bryant <russell@russellbryant.com>
Wed, 22 Jun 2005 14:01:26 +0000 (14:01 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/v1-0@5967 65c4cc65-6c06-0410-ace0-fbb531ad65f3

channels/chan_zap.c

index c71fc79b40ec9c593bfd024275ce1a05aea58407..f7f2969a2a778eead73562bfdb46b853bf096ec5 100755 (executable)
@@ -4078,13 +4078,15 @@ 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_strlen_zero(ast->macrocontext) ? ast->context : ast->macrocontext, "fax", 1, ast->callerid)) {
+                                       char *target_context = ast_strlen_zero(ast->macrocontext) ? ast->context : ast->macrocontext;
+
+                                       if (ast_exists_extension(ast, target_context, "fax", 1, ast->callerid)) {
                                                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 */
-                                               pbx_builtin_setvar_helper(ast,"FAXEXTEN",ast->exten);
-                                               if (ast_async_goto(ast, ast->context, "fax", 1))
-                                                       ast_log(LOG_WARNING, "Failed to async goto '%s' into fax of '%s'\n", ast->name, ast->context);
+                                               pbx_builtin_setvar_helper(ast, "FAXEXTEN", ast->exten);
+                                               if (ast_async_goto(ast, target_context, "fax", 1))
+                                                       ast_log(LOG_WARNING, "Failed to async goto '%s' into fax of '%s'\n", ast->name, target_context);
                                        } else
                                                ast_log(LOG_NOTICE, "Fax detected, but no fax extension\n");
                                } else