aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-05-17 16:49:50 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-05-17 16:49:50 +0000
commit3362289400dce13f4118f6b29db00835cc55a6bf (patch)
tree61d1aef8b4015790c42932a50738778badb00991
parentd2683128536edad7b33b9d0faf1651f01d9f3455 (diff)
Merged revisions 64756 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r64756 | russell | 2007-05-17 11:47:29 -0500 (Thu, 17 May 2007) | 3 lines 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/trunk@64757 f38db490-d61c-443f-a65b-d21fe96a405b
-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 b2160791a..89f0856dd 100644
--- a/apps/app_dial.c
+++ b/apps/app_dial.c
@@ -1184,7 +1184,7 @@ static int dial_exec_full(struct ast_channel *chan, void *data, struct ast_flags
int to; /* timeout */
struct cause_args num = { chan, 0, 0, 0 };
int cause;
- char numsubst[AST_MAX_EXTENSION];
+ char numsubst[256];
char cidname[AST_MAX_EXTENSION];
struct ast_bridge_config config;