Fix compilation error when IMAP storage is enabled

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@129270 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.6.1
Mark Michelson 17 years ago
parent 58c6eb7028
commit 6ddcd21a7f

@ -5929,7 +5929,7 @@ static void imap_mailbox_name(char *spec, size_t len, struct vm_state *vms, int
if (box == NEW_FOLDER) {
ast_copy_string(vms->vmbox, "vm-INBOX", sizeof(vms->vmbox));
} else {
snprintf(vms->vmbox, sizeof(vm->vmbox), "vm-%s", mbox(box));
snprintf(vms->vmbox, sizeof(vms->vmbox), "vm-%s", mbox(box));
}
/* Build up server information */

Loading…
Cancel
Save