summaryrefslogtreecommitdiff
path: root/apps/app_dial.c
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2005-10-05 21:18:28 +0000
committerKevin P. Fleming <kpfleming@digium.com>2005-10-05 21:18:28 +0000
commit350aaac04b6cff28f7752f8b157b904d48259e8c (patch)
tree7c8c9db783eb6fc2e0a3d41f4f4df29b0b1c2660 /apps/app_dial.c
parent6f869da9b0bdb2482893dc7df99e983bd759459e (diff)
properly report hangupcause when ast_request() fails for the last (or only) target of a dial operation (issue #5394, different fix)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6735 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_dial.c')
-rwxr-xr-xapps/app_dial.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/app_dial.c b/apps/app_dial.c
index e25f2d6da..ac579fe94 100755
--- a/apps/app_dial.c
+++ b/apps/app_dial.c
@@ -1109,6 +1109,8 @@ static int dial_exec_full(struct ast_channel *chan, void *data, struct ast_flags
ast_log(LOG_NOTICE, "Unable to create channel of type '%s' (cause %d - %s)\n", tech, cause, ast_cause2str(cause));
HANDLE_CAUSE(cause, chan);
cur = rest;
+ if (!cur)
+ chan->hangupcause = cause;
continue;
}
pbx_builtin_setvar_helper(tmp->chan, "DIALEDPEERNUMBER", numsubst);