mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-17 23:38:23 +00:00
remove support for BYEXTENSION (which nobody even knows about anymore)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@18977 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
5
pbx.c
5
pbx.c
@@ -6040,7 +6040,7 @@ int ast_parseable_goto(struct ast_channel *chan, const char *goto_string)
|
||||
pri++;
|
||||
}
|
||||
if (sscanf(pri, "%d", &ipri) != 1) {
|
||||
if ((ipri = ast_findlabel_extension(chan, context ? context : chan->context, (exten && strcasecmp(exten, "BYEXTENSION")) ? exten : chan->exten,
|
||||
if ((ipri = ast_findlabel_extension(chan, context ? context : chan->context, exten ? exten : chan->exten,
|
||||
pri, chan->cid.cid_num)) < 1) {
|
||||
ast_log(LOG_WARNING, "Priority '%s' must be a number > 0, or valid label\n", pri);
|
||||
return -1;
|
||||
@@ -6049,9 +6049,6 @@ int ast_parseable_goto(struct ast_channel *chan, const char *goto_string)
|
||||
}
|
||||
/* At this point we have a priority and maybe an extension and a context */
|
||||
|
||||
if (exten && !strcasecmp(exten, "BYEXTENSION"))
|
||||
exten = NULL;
|
||||
|
||||
if (mode)
|
||||
ipri = chan->priority + (ipri * mode);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user