dect
/
asterisk
Archived
13
0
Fork 0

Version 0.1.2 from FTP

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@148 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
markster 1999-12-25 00:46:58 +00:00
parent 7d1aa8ca8d
commit e27f9ec1f9
1 changed files with 3 additions and 1 deletions

View File

@ -290,6 +290,7 @@ static int dial_exec(struct ast_channel *chan, void *data)
int to;
int allowredir=0;
char numsubst[AST_MAX_EXTENSION];
char restofit[AST_MAX_EXTENSION];
char *newnum;
if (!data) {
@ -329,7 +330,8 @@ static int dial_exec(struct ast_channel *chan, void *data)
strncpy(numsubst, number, sizeof(numsubst));
/* If we're dialing by extension, look at the extension to know what to dial */
if ((newnum = strstr(numsubst, "BYEXTENSION"))) {
snprintf(newnum, sizeof(numsubst) - (newnum - numsubst), "%s", chan->exten);
strncpy(restofit, newnum + strlen("BYEXTENSION"), sizeof(restofit));
snprintf(newnum, sizeof(numsubst) - (newnum - numsubst), "%s%s", chan->exten,restofit);
/* By default, if we're dialing by extension, don't permit redirecting */
tmp->allowredirect = 0;
if (option_debug)