summaryrefslogtreecommitdiff
path: root/apps/app_sendtext.c
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2007-06-12 15:58:28 +0000
committerRussell Bryant <russell@russellbryant.com>2007-06-12 15:58:28 +0000
commit9e0458e9f15c7a882cc546848c5ab3a0532f7cd1 (patch)
treeee41d7e2d18ab41d762c5cc8ed93419808507cbd /apps/app_sendtext.c
parentd0eaf1e3893cca69a78c6f80e247d43afc081520 (diff)
Completely remove all of the code related to jumping to priority n + 101. yay!
(issue #9926, caio1982) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@68970 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_sendtext.c')
-rw-r--r--apps/app_sendtext.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/apps/app_sendtext.c b/apps/app_sendtext.c
index 6828e3f76..f9bbc9918 100644
--- a/apps/app_sendtext.c
+++ b/apps/app_sendtext.c
@@ -58,11 +58,7 @@ static const char *descrip =
" FAILURE Transmission failed\n"
" UNSUPPORTED Text transmission not supported by channel\n"
"\n"
-"At this moment, text is supposed to be 7 bit ASCII in most channels.\n"
-"The option string many contain the following character:\n"
-"'j' -- jump to n+101 priority if the channel doesn't support\n"
-" text transport\n";
-
+"At this moment, text is supposed to be 7 bit ASCII in most channels.\n";
static int sendtext_exec(struct ast_channel *chan, void *data)
{
@@ -70,7 +66,6 @@ static int sendtext_exec(struct ast_channel *chan, void *data)
struct ast_module_user *u;
char *status = "UNSUPPORTED";
char *parse = NULL;
- int priority_jump = 0;
AST_DECLARE_APP_ARGS(args,
AST_APP_ARG(text);
AST_APP_ARG(options);
@@ -88,16 +83,12 @@ static int sendtext_exec(struct ast_channel *chan, void *data)
AST_STANDARD_APP_ARGS(args, parse);
if (args.options) {
- if (strchr(args.options, 'j'))
- priority_jump = 1;
}
ast_channel_lock(chan);
if (!chan->tech->send_text) {
ast_channel_unlock(chan);
/* Does not support transport */
- if (priority_jump || ast_opt_priority_jumping)
- ast_goto_if_exists(chan, chan->context, chan->exten, chan->priority + 101);
ast_module_user_remove(u);
return 0;
}