aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-04-02 18:55:25 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-04-02 18:55:25 +0000
commita1cba707ebcf4a53e914045ed938cd1a21d0592d (patch)
treeebd9f5545be6af76e1ad724c92d9c455e7b13a04 /apps
parent796a31701cf7c496b7c739ebdc5150ca8d608c80 (diff)
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/branches/1.2@59723 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-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 bd6e8b8d6..594a63822 100644
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -2434,7 +2434,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;
char *category = NULL;