summaryrefslogtreecommitdiff
path: root/main/channel.c
diff options
context:
space:
mode:
authorGeorge Joseph <gjoseph@digium.com>2017-02-16 07:28:33 -0700
committerGeorge Joseph <gjoseph@digium.com>2017-02-16 09:10:02 -0600
commitf8f513d363fd10148976c592cbc8be860cda28ab (patch)
tree1ec0ac62c5300d992096708e8855ea6086b51f6d /main/channel.c
parenta9c15a0e4c987d053b0ab43312946719d7655a3f (diff)
stream: Rename creates/destroys to allocs/frees
To be consistent with sdp implementation. Change-Id: I714e300939b4188f58ca66ce9d1e84b287009500
Diffstat (limited to 'main/channel.c')
-rw-r--r--main/channel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/channel.c b/main/channel.c
index fa92508ac..5e8178358 100644
--- a/main/channel.c
+++ b/main/channel.c
@@ -888,7 +888,7 @@ __ast_channel_alloc_ap(int needqueue, int state, const char *cid_num, const char
return ast_channel_unref(tmp);
}
- if (!(topology = ast_stream_topology_create())) {
+ if (!(topology = ast_stream_topology_alloc())) {
return ast_channel_unref(tmp);
}
ast_channel_internal_set_stream_topology(tmp, topology);