use CDR API calls instead of re-implementing them (bug #4726)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6213 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Kevin P. Fleming
2005-07-25 22:56:18 +00:00
parent 307566933f
commit f358db3d43
3 changed files with 21 additions and 22 deletions

4
cdr.c
View File

@@ -147,7 +147,7 @@ void ast_cdr_unregister(char *name)
AST_LIST_UNLOCK(&be_list);
}
static struct ast_cdr *cdr_dup(struct ast_cdr *cdr)
struct ast_cdr *ast_cdr_dup(struct ast_cdr *cdr)
{
struct ast_cdr *newcdr;
@@ -809,7 +809,7 @@ void ast_cdr_reset(struct ast_cdr *cdr, int flags)
if (ast_test_flag(&tmp, AST_CDR_FLAG_LOCKED) || !ast_test_flag(cdr, AST_CDR_FLAG_LOCKED)) {
if (ast_test_flag(&tmp, AST_CDR_FLAG_POSTED)) {
ast_cdr_end(cdr);
if ((dup = cdr_dup(cdr))) {
if ((dup = ast_cdr_dup(cdr))) {
ast_cdr_detach(dup);
}
ast_set_flag(cdr, AST_CDR_FLAG_POSTED);