Generate "failed" context on busy, too

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3290 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Spencer
2004-06-23 20:46:58 +00:00
parent da49f53b66
commit 27bb1601d3

4
pbx.c
View File

@@ -3942,7 +3942,9 @@ int ast_pbx_outgoing_exten(char *type, int format, void *data, int timeout, char
ast_verbose(VERBOSE_PREFIX_4 "Channel %s was never answered.\n", chan->name); ast_verbose(VERBOSE_PREFIX_4 "Channel %s was never answered.\n", chan->name);
ast_hangup(chan); ast_hangup(chan);
} }
} else { }
if(res < 0) { /* the call failed for some reason */
/* create a fake channel and execute the "failed" extension (if it exists) within the requested context */ /* create a fake channel and execute the "failed" extension (if it exists) within the requested context */
/* check if "failed" exists */ /* check if "failed" exists */
if (ast_exists_extension(chan, context, "failed", 1, NULL)) { if (ast_exists_extension(chan, context, "failed", 1, NULL)) {