From: Joshua Colp Date: Fri, 3 Nov 2006 19:15:07 +0000 (+0000) Subject: One has to create the path and filename in order to copy a file there. (issue #8278... X-Git-Tag: 1.6.0-beta1~3^2~4136 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e0ff47fe21758b2df573e99bad62cca82a96fafa;p=thirdparty%2Fasterisk.git One has to create the path and filename in order to copy a file there. (issue #8278 reported by davebath) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@47146 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c index a9c7537ebf..e6efb09a9a 100644 --- a/apps/app_voicemail.c +++ b/apps/app_voicemail.c @@ -2544,12 +2544,14 @@ static int copy_message(struct ast_channel *chan, struct ast_vm_user *vmu, int i make_dir(fromdir, sizeof(fromdir), vmu->context, vmu->mailbox, frombox); make_file(frompath, sizeof(frompath), fromdir, msgnum); + make_dir(todir, sizeof(todir), recip->context, recip->mailbox, frombox); if (vm_lock_path(todir)) return ERROR_LOCK_PATH; recipmsgnum = last_message_index(recip, todir) + 1; if (recipmsgnum < recip->maxmsg) { + make_file(topath, sizeof(topath), todir, recipmsgnum); COPY(fromdir, msgnum, todir, recipmsgnum, recip->mailbox, recip->context, frompath, topath); } else { ast_log(LOG_ERROR, "Recipient mailbox %s@%s is full\n", recip->mailbox, recip->context);