summaryrefslogtreecommitdiff
path: root/res/stasis/stasis_bridge.c
diff options
context:
space:
mode:
authorGeorge Joseph <gjoseph@digium.com>2017-01-27 07:01:21 -0600
committerGerrit Code Review <gerrit2@gerrit.digium.api>2017-01-27 07:01:21 -0600
commitcb504ad6ae622d036d415fbedde438c7df380cc3 (patch)
treea7f0e5443f068cc59f37901acbf0e85951e6b592 /res/stasis/stasis_bridge.c
parentb39c04fc02015ef66aa37f427bbd5c311ef10ae7 (diff)
parent17f4989d49c7117684c04bff8a3e6fed1c6e6aad (diff)
Merge "ari: Implement 'debug all' and request/response logging" into 13
Diffstat (limited to 'res/stasis/stasis_bridge.c')
-rw-r--r--res/stasis/stasis_bridge.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/res/stasis/stasis_bridge.c b/res/stasis/stasis_bridge.c
index 31178e9f4..81b35e308 100644
--- a/res/stasis/stasis_bridge.c
+++ b/res/stasis/stasis_bridge.c
@@ -157,13 +157,13 @@ static int bridge_stasis_push_peek(struct ast_bridge *self, struct ast_bridge_ch
}
to_be_replaced = ast_channel_snapshot_get_latest(ast_channel_uniqueid(swap->chan));
- ast_debug(3, "Copying stasis app name %s from %s to %s\n", app_name(control_app(swap_control)),
+ ast_debug(3, "Copying stasis app name %s from %s to %s\n", stasis_app_name(control_app(swap_control)),
ast_channel_name(swap->chan), ast_channel_name(bridge_channel->chan));
ast_channel_lock(bridge_channel->chan);
/* copy the app name from the swap channel */
- app_set_replace_channel_app(bridge_channel->chan, app_name(control_app(swap_control)));
+ app_set_replace_channel_app(bridge_channel->chan, stasis_app_name(control_app(swap_control)));
/* set the replace channel snapshot */
app_set_replace_channel_snapshot(bridge_channel->chan, to_be_replaced);