summaryrefslogtreecommitdiff
path: root/main/stasis_cache.c
diff options
context:
space:
mode:
authorKinsey Moore <kmoore@digium.com>2013-03-28 15:45:18 +0000
committerKinsey Moore <kmoore@digium.com>2013-03-28 15:45:18 +0000
commit71206544a770eb4004294ed13613a7cde6e0e056 (patch)
tree7664e5ebef6d139f25c264946a7270b4141a8fe3 /main/stasis_cache.c
parent1a2a4578d2ab7e1d1f1518a3f8bcc41f3fd13702 (diff)
Break the world. Stasis message type accessors should now all be named correctly.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@384261 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/stasis_cache.c')
-rw-r--r--main/stasis_cache.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/stasis_cache.c b/main/stasis_cache.c
index 85c823909..7b6dc82c9 100644
--- a/main/stasis_cache.c
+++ b/main/stasis_cache.c
@@ -250,7 +250,7 @@ static struct stasis_message_type *cache_clear_data(void)
static struct stasis_message_type *__cache_update;
-struct stasis_message_type *stasis_cache_update(void)
+struct stasis_message_type *stasis_cache_update_type(void)
{
ast_assert(__cache_update != NULL);
return __cache_update;
@@ -340,7 +340,7 @@ static struct stasis_message *update_create(struct stasis_topic *topic, struct s
update->type = stasis_message_type(new_snapshot);
}
- msg = stasis_message_create(stasis_cache_update(), update);
+ msg = stasis_message_create(stasis_cache_update_type(), update);
if (!msg) {
return NULL;
}