summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
authorSteve Murphy <murf@digium.com>2007-09-11 20:49:21 +0000
committerSteve Murphy <murf@digium.com>2007-09-11 20:49:21 +0000
commitc6b6a67364fb234e75ebb86edd012abc8f109d6e (patch)
treea8af7217b4492975b4f63cb62b8de041db6d629f /main
parent9bd4b3e35390963c1213218fc1d94bbc650a800d (diff)
Merged revisions 82261 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r82261 | murf | 2007-09-11 14:36:15 -0600 (Tue, 11 Sep 2007) | 1 line 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. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@82262 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main')
-rw-r--r--main/cdr.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/main/cdr.c b/main/cdr.c
index 43b92aea9..16fa842ea 100644
--- a/main/cdr.c
+++ b/main/cdr.c
@@ -977,6 +977,8 @@ static void post_cdr(struct ast_cdr *cdr)
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))