Issue #5918 - Disposition showing FAILED even though call is answered successfully (Reported by tracinet)

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@14234 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Joshua Colp
2006-03-22 21:38:32 +00:00
parent d31a0d9e7b
commit dcccda229d
2 changed files with 6 additions and 4 deletions

View File

@@ -32,8 +32,8 @@
#define AST_CDR_NOANSWER (1 << 0)
#define AST_CDR_BUSY (1 << 1)
#define AST_CDR_ANSWERED (1 << 2)
#define AST_CDR_FAILED (1 << 3)
#define AST_CDR_FAILED (1 << 2)
#define AST_CDR_ANSWERED (1 << 3)
/*! AMA Flags */
#define AST_CDR_OMIT (1)