aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/cdr.h
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2006-03-22 21:38:32 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2006-03-22 21:38:32 +0000
commita49d25a1c283f79f27a8963fb7ec2cb652356248 (patch)
tree57d80b79f098d2d9103dfa0458a31618d8de1e56 /include/asterisk/cdr.h
parent9891fc8f894f2460596dc9d1d90d7e14a6a2c289 (diff)
Issue #5918 - Disposition showing FAILED even though call is answered successfully (Reported by tracinet)
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@14234 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk/cdr.h')
-rw-r--r--include/asterisk/cdr.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asterisk/cdr.h b/include/asterisk/cdr.h
index c43882946..ae10ac13a 100644
--- a/include/asterisk/cdr.h
+++ b/include/asterisk/cdr.h
@@ -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)