aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/cdr.h
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-06-20 15:19:36 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-06-20 15:19:36 +0000
commitaf61b81cf9a685f4983745e96955759b3f06c8ba (patch)
tree2995fb7f4652d0ad2cec939ad616a89ccc6a8ecf /include/asterisk/cdr.h
parentf91abc6dc1c3737e51e386c8c655fb2dee9cf6ec (diff)
Allow CDR's to be linked and work on the linked list
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@3247 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk/cdr.h')
-rwxr-xr-xinclude/asterisk/cdr.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/asterisk/cdr.h b/include/asterisk/cdr.h
index 85670017f..ca45d8fa1 100755
--- a/include/asterisk/cdr.h
+++ b/include/asterisk/cdr.h
@@ -74,6 +74,7 @@ struct ast_cdr {
char uniqueid[32];
/* User field */
char userfield[AST_MAX_USER_FIELD];
+ struct ast_cdr *next;
};
typedef int (*ast_cdrbe)(struct ast_cdr *cdr);