aboutsummaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2010-07-13 19:09:42 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2010-07-13 19:09:42 +0000
commitd267b93f33eb868156a621dfec5e3bd6b74337ec (patch)
treeedae9e8386d176f20ba8685d56f00541f8a5763a /main
parent88a041a0a20e82aaa103f1b33274228c37aba0ba (diff)
Merged revisions 276123 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r276123 | russell | 2010-07-13 14:06:53 -0500 (Tue, 13 Jul 2010) | 2 lines 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/trunk@276124 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main')
-rw-r--r--main/features.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/features.c b/main/features.c
index 32b311278..a107b4b7a 100644
--- a/main/features.c
+++ b/main/features.c
@@ -3483,7 +3483,7 @@ int ast_bridge_call(struct ast_channel *chan,struct ast_channel *peer,struct ast
ast_cdr_specialized_reset(new_peer_cdr, 0);
}
} else {
- ast_cdr_specialized_reset(peer_cdr, 0); /* nothing changed, reset the peer_cdr */
+ ast_cdr_specialized_reset(peer->cdr, 0); /* nothing changed, reset the peer cdr */
}
}