aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>1999-12-25 00:46:58 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>1999-12-25 00:46:58 +0000
commite27f9ec1f9b7901e61e75add6350eb1d06cf6202 (patch)
tree24a564cae57d0b93811232e577fa9482bc107beb
parent7d1aa8ca8dee1d105faea46190835614954043a7 (diff)
Version 0.1.2 from FTP
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@148 f38db490-d61c-443f-a65b-d21fe96a405b
-rwxr-xr-xapps/app_dial.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/app_dial.c b/apps/app_dial.c
index a8070e6fc..02ed8d344 100755
--- a/apps/app_dial.c
+++ b/apps/app_dial.c
@@ -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)