From: Joshua Colp Date: Sun, 27 Jan 2013 17:13:22 +0000 (+0000) Subject: Fix a bug where the apply function was not getting called. X-Git-Tag: 13.0.0-beta1~2157 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=44ce06682b8f145b4d3136700ca4204ef872c606;p=thirdparty%2Fasterisk.git 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 --- 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;