From: Russell Bryant Date: Tue, 13 Jul 2010 19:06:53 +0000 (+0000) Subject: Use chan->cdr instead of chan_cdr (just like peer->cdr instead of peer_cdr in the... X-Git-Tag: 1.4.35-rc1~22 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dca56377a4149d2662eab879196e18ef5b511d2b;p=thirdparty%2Fasterisk.git Use chan->cdr instead of chan_cdr (just like peer->cdr instead of peer_cdr in the last commit). git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@276123 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/res/res_features.c b/res/res_features.c index 4ebc83c8c7..80e42fe1c8 100644 --- a/res/res_features.c +++ b/res/res_features.c @@ -2167,7 +2167,7 @@ int ast_bridge_call(struct ast_channel *chan,struct ast_channel *peer,struct ast /* new channel */ ast_cdr_specialized_reset(new_chan_cdr,0); } else { - ast_cdr_specialized_reset(chan_cdr,0); /* nothing changed, reset the chan_cdr */ + ast_cdr_specialized_reset(chan->cdr, 0); /* nothing changed, reset the chan cdr */ } }