Skip to content
Snippets Groups Projects
Commit 7164958d authored by Terry Wilson's avatar Terry Wilson
Browse files

Merged revisions 189465 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.4

........
  r189465 | twilson | 2009-04-20 16:10:27 -0500 (Mon, 20 Apr 2009) | 2 lines
  
  Update CDR appropriately when AST_CAUSE_NO_ANSWER is set
........


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@189516 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent f505cb43
No related branches found
No related tags found
No related merge requests found
......@@ -636,6 +636,10 @@ static void handle_cause(int cause, struct cause_args *num)
break;
case AST_CAUSE_NO_ANSWER:
if (cdr) {
ast_cdr_noanswer(cdr);
}
break;
case AST_CAUSE_NORMAL_CLEARING:
break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment