aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-05-17 16:47:29 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-05-17 16:47:29 +0000
commitec3ab9baebf9051aa69e5d438c3896b03c505786 (patch)
tree3bdcbe9be8939871e17d1c157ddee75fbcb5cead /apps
parentae4d14ea313841a649f7a16d13a51692128df6c6 (diff)
Increase the size of a buffer to support longer dial strings for channels.
(issue #9291, reported and fix suggested by meni) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@64756 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-rw-r--r--apps/app_dial.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_dial.c b/apps/app_dial.c
index cceec384b..91e7325f2 100644
--- a/apps/app_dial.c
+++ b/apps/app_dial.c
@@ -786,7 +786,7 @@ static int dial_exec_full(struct ast_channel *chan, void *data, struct ast_flags
int numcongestion = 0;
int numnochan = 0;
int cause;
- char numsubst[AST_MAX_EXTENSION];
+ char numsubst[256];
char cidname[AST_MAX_EXTENSION];
int privdb_val = 0;
unsigned int calldurationlimit = 0;