From cf15740eaf6de047096a25afe678a577a574a9aa Mon Sep 17 00:00:00 2001 From: "Kevin P. Fleming" Date: Mon, 10 Apr 2006 23:01:22 +0000 Subject: 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 --- pbx.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'pbx.c') diff --git a/pbx.c b/pbx.c index d28b9e8c0..d4b17dbf7 100644 --- a/pbx.c +++ b/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); -- cgit v1.2.3