[asterisk-commits] russell: branch 1.4 r276123 - /branches/1.4/res/res_features.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Jul 13 14:06:56 CDT 2010
Author: russell
Date: Tue Jul 13 14:06:53 2010
New Revision: 276123
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=276123
Log:
Use chan->cdr instead of chan_cdr (just like peer->cdr instead of peer_cdr in the last commit).
Modified:
branches/1.4/res/res_features.c
Modified: branches/1.4/res/res_features.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.4/res/res_features.c?view=diff&rev=276123&r1=276122&r2=276123
==============================================================================
--- branches/1.4/res/res_features.c (original)
+++ branches/1.4/res/res_features.c Tue Jul 13 14:06:53 2010
@@ -2167,7 +2167,7 @@
/* 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 */
}
}
More information about the asterisk-commits
mailing list