aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_voicemail.c
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-04-02 19:01:04 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-04-02 19:01:04 +0000
commit24f3d7d7d0b92fdcdd231463430a3bc212c0b804 (patch)
treee73a80d0c33cc8132bdc4cad5ff5c8ffd13ac944 /apps/app_voicemail.c
parent87f965332164f18bee03301d4bf1024ad2245b04 (diff)
Merged revisions 59724 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ................ r59724 | file | 2007-04-02 14:58:24 -0400 (Mon, 02 Apr 2007) | 10 lines Merged revisions 59723 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r59723 | file | 2007-04-02 14:55:25 -0400 (Mon, 02 Apr 2007) | 2 lines Increase the maximum size for a string of mailboxes to 1024. (issue #9270 reported by rtucker) ........ ................ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@59725 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_voicemail.c')
-rw-r--r--apps/app_voicemail.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c
index d151b098b..b1e62ff8b 100644
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -2891,7 +2891,7 @@ static int leave_voicemail(struct ast_channel *chan, char *ext, struct leave_vm_
char fmt[80];
char *context;
char ecodes[16] = "#";
- char tmp[256] = "", *tmpptr;
+ char tmp[1024] = "", *tmpptr;
struct ast_vm_user *vmu;
struct ast_vm_user svm;
const char *category = NULL;