From 44ce06682b8f145b4d3136700ca4204ef872c606 Mon Sep 17 00:00:00 2001
From: Joshua Colp <jcolp@digium.com>
Date: Sun, 27 Jan 2013 17:13:22 +0000
Subject: [PATCH] Fix a bug where the apply function was not getting called.

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@380165 65c4cc65-6c06-0410-ace0-fbb531ad65f3
---
 main/sorcery.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/main/sorcery.c b/main/sorcery.c
index a347094cfb..ca7efb0bc8 100644
--- a/main/sorcery.c
+++ b/main/sorcery.c
@@ -472,6 +472,7 @@ int ast_sorcery_object_register(struct ast_sorcery *sorcery, const char *type, a
 	object_type->type.item_alloc = alloc;
 
 	object_type->transform = transform;
+	object_type->apply = apply;
 	object_type->file->types[0] = &object_type->type;
 	object_type->file->types[1] = NULL;
 
-- 
GitLab