]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Merged revisions 62737 via svnmerge from
authorSteve Murphy <murf@digium.com>
Wed, 2 May 2007 20:46:07 +0000 (20:46 +0000)
committerSteve Murphy <murf@digium.com>
Wed, 2 May 2007 20:46:07 +0000 (20:46 +0000)
https://origsvn.digium.com/svn/asterisk/branches/1.2

........
r62737 | murf | 2007-05-02 14:10:32 -0600 (Wed, 02 May 2007) | 1 line

Some tweaks to satisfy CDR bug 8796, where being in 'h' extension louses up the dst field
........

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@62738 65c4cc65-6c06-0410-ace0-fbb531ad65f3

main/cdr.c
main/pbx.c

index f037e57804f6254176d49a7141406d54fe052dd8..9b62760c1f3b0fc257ecbb3b169ff9b28b97bb76 100644 (file)
@@ -879,9 +879,11 @@ int ast_cdr_update(struct ast_channel *c)
 
                        /* Copy account code et-al */   
                        ast_copy_string(cdr->accountcode, c->accountcode, sizeof(cdr->accountcode));
-                       /* Destination information */ /* XXX privilege macro* ? */
-                       ast_copy_string(cdr->dst, S_OR(c->macroexten, c->exten), sizeof(cdr->dst));
-                       ast_copy_string(cdr->dcontext, S_OR(c->macrocontext, c->context), sizeof(cdr->dcontext));
+                       if (!ast_check_hangup(c)) {
+                               /* Destination information */ /* XXX privilege macro* ? */
+                               ast_copy_string(cdr->dst, S_OR(c->macroexten, c->exten), sizeof(cdr->dst));
+                               ast_copy_string(cdr->dcontext, S_OR(c->macrocontext, c->context), sizeof(cdr->dcontext));
+                       }
                }
        }
 
index 22c67f4c498569eb1b9cf45025bef70187d2fccd..068b638e4289f7ea31db2365e199b9e15663266b 100644 (file)
@@ -516,7 +516,7 @@ int pbx_exec(struct ast_channel *c,                 /*!< Channel */
        const char *saved_c_appl;
        const char *saved_c_data;
 
-       if (c->cdr && !(c->exten[0] == 'h' && c->exten[1] == 0) )
+       if (c->cdr &&  !ast_check_hangup(c))
                ast_cdr_setapp(c->cdr, app->name, data);
 
        /* save channel values */