summaryrefslogtreecommitdiff
path: root/addons/chan_mobile.c
diff options
context:
space:
mode:
authorTerry Wilson <twilson@digium.com>2012-02-24 00:32:20 +0000
committerTerry Wilson <twilson@digium.com>2012-02-24 00:32:20 +0000
commitebaf59a656ef94e19332c08e0d0562b8cbe59f65 (patch)
tree6e75fd13924808bddacc18e14d5e02975a322481 /addons/chan_mobile.c
parent235f88d12270b328ad466889189400666b3e56c1 (diff)
Opaquification for ast_format structs in struct ast_channel
Review: https://reviewboard.asterisk.org/r/1770/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@356573 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'addons/chan_mobile.c')
-rw-r--r--addons/chan_mobile.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/addons/chan_mobile.c b/addons/chan_mobile.c
index e0f95e175..31d7f52bd 100644
--- a/addons/chan_mobile.c
+++ b/addons/chan_mobile.c
@@ -845,10 +845,10 @@ static struct ast_channel *mbl_new(int state, struct mbl_pvt *pvt, char *cid_num
ast_channel_tech_set(chn, &mbl_tech);
ast_format_cap_add(ast_channel_nativeformats(chn), &prefformat);
- ast_format_copy(&chn->rawreadformat, &prefformat);
- ast_format_copy(&chn->rawwriteformat, &prefformat);
- ast_format_copy(&chn->writeformat, &prefformat);
- ast_format_copy(&chn->readformat, &prefformat);
+ ast_format_copy(ast_channel_rawreadformat(chn), &prefformat);
+ ast_format_copy(ast_channel_rawwriteformat(chn), &prefformat);
+ ast_format_copy(ast_channel_writeformat(chn), &prefformat);
+ ast_format_copy(ast_channel_readformat(chn), &prefformat);
ast_channel_tech_pvt_set(chn, pvt);
if (state == AST_STATE_RING)