aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2010-07-13 19:06:53 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2010-07-13 19:06:53 +0000
commitf5592a6cb96ca6a56dbe3d351d1cf9374beaf6ab (patch)
treef736d23c118752e3b9e963c8a2edd695376692fd
parent21e79935aa5e64a1d57545aa6e6f0b23d8bcec6c (diff)
Use chan->cdr instead of chan_cdr (just like peer->cdr instead of peer_cdr in the last commit).
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@276123 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--res/res_features.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/res_features.c b/res/res_features.c
index 4ebc83c8c..80e42fe1c 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 */
}
}