summaryrefslogtreecommitdiff
path: root/apps/app_dictate.c
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2007-07-16 14:39:29 +0000
committerJoshua Colp <jcolp@digium.com>2007-07-16 14:39:29 +0000
commitb8cd949ccea7f878578f16def5b3144c050d315e (patch)
tree1236d574745c7d4d49bb3fb658e3a6bdd3e88a22 /apps/app_dictate.c
parent96a646734fe34d65077cbe49c533b80759fc12e8 (diff)
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
Diffstat (limited to 'apps/app_dictate.c')
-rw-r--r--apps/app_dictate.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/apps/app_dictate.c b/apps/app_dictate.c
index 61252433d..566ff0f52 100644
--- a/apps/app_dictate.c
+++ b/apps/app_dictate.c
@@ -89,7 +89,6 @@ static int dictate_exec(struct ast_channel *chan, void *data)
struct ast_flags flags = {0};
struct ast_filestream *fs;
struct ast_frame *f = NULL;
- struct ast_module_user *u;
int ffactor = 320 * 80,
res = 0,
done = 0,
@@ -101,8 +100,6 @@ static int dictate_exec(struct ast_channel *chan, void *data)
len = 0,
maxlen = 0,
mode = 0;
-
- u = ast_module_user_add(chan);
snprintf(dftbase, sizeof(dftbase), "%s/dictate", ast_config_AST_SPOOL_DIR);
if (!ast_strlen_zero(data)) {
@@ -122,7 +119,6 @@ static int dictate_exec(struct ast_channel *chan, void *data)
oldr = chan->readformat;
if ((res = ast_set_read_format(chan, AST_FORMAT_SLINEAR)) < 0) {
ast_log(LOG_WARNING, "Unable to set to linear mode.\n");
- ast_module_user_remove(u);
return -1;
}
@@ -330,7 +326,6 @@ static int dictate_exec(struct ast_channel *chan, void *data)
if (oldr) {
ast_set_read_format(chan, oldr);
}
- ast_module_user_remove(u);
return 0;
}