From a18f60f5e8b79f758c3f857d9bb938a18c3679fa Mon Sep 17 00:00:00 2001 From: Anthony Minessale II <anthmct@yahoo.com> Date: Wed, 27 Oct 2004 03:33:14 +0000 Subject: [PATCH] rollback stupid code git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4109 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- cdr.c | 1 - include/asterisk/cdr.h | 1 - 2 files changed, 2 deletions(-) diff --git a/cdr.c b/cdr.c index ebb3af1bb3..328a20b514 100755 --- a/cdr.c +++ b/cdr.c @@ -290,7 +290,6 @@ int ast_cdr_init(struct ast_cdr *cdr, struct ast_channel *c) if (!ast_strlen_zero(cdr->channel)) ast_log(LOG_WARNING, "CDR already initialized on '%s'\n", chan); strncpy(cdr->channel, c->name, sizeof(cdr->channel) - 1); - cdr->chan = c; /* Grab source from ANI or normal Caller*ID */ if (c->cid.cid_ani) num = c->cid.cid_ani; diff --git a/include/asterisk/cdr.h b/include/asterisk/cdr.h index 6c0d12319f..807ad64198 100755 --- a/include/asterisk/cdr.h +++ b/include/asterisk/cdr.h @@ -78,7 +78,6 @@ struct ast_cdr { char uniqueid[32]; /* User field */ char userfield[AST_MAX_USER_FIELD]; - struct ast_channel *chan; struct ast_cdr *next; }; -- GitLab