[asterisk-commits] murf: branch 1.4 r82261 - /branches/1.4/main/cdr.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Sep 11 15:36:15 CDT 2007
Author: murf
Date: Tue Sep 11 15:36:15 2007
New Revision: 82261
URL: http://svn.digium.com/view/asterisk?view=rev&rev=82261
Log:
this change should fix issue # 10659 -- what I worry about is how many other bug reports it may generate. Hopefully, we can please the/a majority. Hopefully. We shall see. Calls not marked ANSWERED and with only one channel name will not be posted. This should eliminate the double CDR's.
Modified:
branches/1.4/main/cdr.c
Modified: branches/1.4/main/cdr.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/main/cdr.c?view=diff&rev=82261&r1=82260&r2=82261
==============================================================================
--- branches/1.4/main/cdr.c (original)
+++ branches/1.4/main/cdr.c Tue Sep 11 15:36:15 2007
@@ -978,6 +978,8 @@
struct ast_cdr_beitem *i;
for ( ; cdr ; cdr = cdr->next) {
+ if (cdr->disposition < AST_CDR_ANSWERED && (ast_strlen_zero(cdr->channel) || ast_strlen_zero(cdr->dstchannel)))
+ continue; /* people don't want to see unanswered single-channel events */
chan = S_OR(cdr->channel, "<unknown>");
check_post(cdr);
if (ast_tvzero(cdr->end))
More information about the asterisk-commits
mailing list