From b8cd949ccea7f878578f16def5b3144c050d315e Mon Sep 17 00:00:00 2001 From: Joshua Colp Date: Mon, 16 Jul 2007 14:39:29 +0000 Subject: Applications no longer need to call ast_module_user_add and ast_module_user_remove. This is now taken care of in the pbx_exec function outside of the application. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@75200 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_externalivr.c | 6 ------ 1 file changed, 6 deletions(-) (limited to 'apps/app_externalivr.c') diff --git a/apps/app_externalivr.c b/apps/app_externalivr.c index e5778edba..63c182337 100644 --- a/apps/app_externalivr.c +++ b/apps/app_externalivr.c @@ -243,7 +243,6 @@ static struct playlist_entry *make_entry(const char *filename) static int app_exec(struct ast_channel *chan, void *data) { - struct ast_module_user *lu; struct playlist_entry *entry; const char *args = data; int child_stdin[2] = { 0,0 }; @@ -265,8 +264,6 @@ static int app_exec(struct ast_channel *chan, void *data) struct ivr_localuser *u = &foo; sigset_t fullset, oldset; - lu = ast_module_user_add(chan); - sigfillset(&fullset); pthread_sigmask(SIG_BLOCK, &fullset, &oldset); @@ -275,7 +272,6 @@ static int app_exec(struct ast_channel *chan, void *data) if (ast_strlen_zero(args)) { ast_log(LOG_WARNING, "ExternalIVR requires a command to execute\n"); - ast_module_user_remove(lu); return -1; } @@ -571,8 +567,6 @@ static int app_exec(struct ast_channel *chan, void *data) while ((entry = AST_LIST_REMOVE_HEAD(&u->playlist, list))) ast_free(entry); - ast_module_user_remove(lu); - return res; } -- cgit v1.2.3