From ea4aeb0c67d67a56a1ebcb270c207a13ad878f3c Mon Sep 17 00:00:00 2001 From: Mark Spencer Date: Wed, 8 Oct 2003 02:21:09 +0000 Subject: Handle without context git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1620 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channels/chan_local.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'channels/chan_local.c') diff --git a/channels/chan_local.c b/channels/chan_local.c index 55e2e9acb..8cc057b81 100755 --- a/channels/chan_local.c +++ b/channels/chan_local.c @@ -333,6 +333,13 @@ static struct local_pvt *local_alloc(char *data, int format) memset(tmp, 0, sizeof(struct local_pvt)); ast_mutex_init(&tmp->lock); strncpy(tmp->exten, data, sizeof(tmp->exten) - 1); + opts = strchr(tmp->exten, '/'); + if (opts) { + *opts='\0'; + opts++; + if (strchr(opts, 'n')) + tmp->nooptimization = 1; + } c = strchr(tmp->exten, '@'); if (c) { *c = '\0'; @@ -340,13 +347,6 @@ static struct local_pvt *local_alloc(char *data, int format) strncpy(tmp->context, c, sizeof(tmp->context) - 1); } else strncpy(tmp->context, "default", sizeof(tmp->context) - 1); - opts = strchr(tmp->context, '/'); - if (opts) { - *opts='\0'; - opts++; - if (strchr(opts, 'n')) - tmp->nooptimization = 1; - } tmp->reqformat = format; if (!ast_exists_extension(NULL, tmp->context, tmp->exten, 1, NULL)) { ast_log(LOG_NOTICE, "No such extension/context %s@%s creating local channel\n", tmp->context, tmp->exten); -- cgit v1.2.3