summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorMark Michelson <mmichelson@digium.com>2007-10-16 16:40:24 +0000
committerMark Michelson <mmichelson@digium.com>2007-10-16 16:40:24 +0000
commit227d678cc7df9511627952d2b1861f61bbb2ae0d (patch)
treee97b33ed9cac06201afff9f3c374d31cf4f814d3 /apps
parent1e0be8ba64dda2ab7af0388931ecda8c300616ca (diff)
Fix IMAP compilation error.
(closes issue #10986, reported and patched by snuffy) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@85883 65c4cc65-6c06-0410-ace0-fbb531ad65f3
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 904b4f84b..6d52466a9 100644
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -2545,7 +2545,7 @@ static int imap_store_file(char *dir, char *mailboxuser, char *mailboxcontext, i
((char *)buf)[len] = '\0';
INIT(&str, mail_string, buf, len);
init_mailstream(vms, NEW_FOLDER);
- imap_mailbox_name(mailbox, vms, NEW_FOLDER, 1);
+ imap_mailbox_name(mailbox, sizeof(mailbox), vms, NEW_FOLDER, 1);
if(!mail_append(vms->mailstream, mailbox, &str))
ast_log(LOG_ERROR, "Error while sending the message to %s\n", mailbox);
fclose(p);