aboutsummaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorjpeeler <jpeeler@f38db490-d61c-443f-a65b-d21fe96a405b>2009-01-12 22:00:32 +0000
committerjpeeler <jpeeler@f38db490-d61c-443f-a65b-d21fe96a405b>2009-01-12 22:00:32 +0000
commit540eb381fcd64b97fa545d1774c4aea964d4a046 (patch)
tree67735839a63a6654c19c98d36ca8622c59f4cb8e /res
parent18b6519a703d6cfad117be19bd7f1cf2d7159d15 (diff)
Merged revisions 168517 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ................ r168517 | jpeeler | 2009-01-12 15:51:46 -0600 (Mon, 12 Jan 2009) | 12 lines Merged revisions 168516 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r168516 | jpeeler | 2009-01-12 15:42:34 -0600 (Mon, 12 Jan 2009) | 5 lines (closes issue #13881) Reported by: hoowa Update the app CDR field for AGI commands that are not executing an application via "exec". ........ ................ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.1@168519 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'res')
-rw-r--r--res/res_agi.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/res/res_agi.c b/res/res_agi.c
index f91cb7ca0..cda91eb5d 100644
--- a/res/res_agi.c
+++ b/res/res_agi.c
@@ -2577,6 +2577,11 @@ static int agi_handle_command(struct ast_channel *chan, AGI *agi, char *buf, int
the module we are using */
if (c->mod != ast_module_info->self)
ast_module_ref(c->mod);
+ /* If the AGI command being executed is an actual application (using agi exec)
+ the app field will be updated in pbx_exec via handle_exec */
+ if (chan->cdr && !ast_check_hangup(chan) && strcasecmp(argv[0], "EXEC"))
+ ast_cdr_setapp(chan->cdr, "AGI", buf);
+
res = c->handler(chan, agi, argc, argv);
if (c->mod != ast_module_info->self)
ast_module_unref(c->mod);