summaryrefslogtreecommitdiff
path: root/res/res_adsi.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 /res/res_adsi.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 'res/res_adsi.c')
-rw-r--r--res/res_adsi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/res/res_adsi.c b/res/res_adsi.c
index 0987b494a..30d8cfc85 100644
--- a/res/res_adsi.c
+++ b/res/res_adsi.c
@@ -371,8 +371,8 @@ int AST_OPTIONAL_API_NAME(ast_adsi_transmit_message_full)(struct ast_channel *ch
struct ast_format writeformat;
struct ast_format readformat;
- ast_format_copy(&writeformat, &chan->writeformat);
- ast_format_copy(&readformat, &chan->readformat);
+ ast_format_copy(&writeformat, ast_channel_writeformat(chan));
+ ast_format_copy(&readformat, ast_channel_readformat(chan));
for (x = 0; x < msglen; x += (msg[x+1]+2)) {
if (msg[x] == ADSI_SWITCH_TO_DATA) {