aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorjpeeler <jpeeler@f38db490-d61c-443f-a65b-d21fe96a405b>2010-12-16 23:30:59 +0000
committerjpeeler <jpeeler@f38db490-d61c-443f-a65b-d21fe96a405b>2010-12-16 23:30:59 +0000
commit2853b42628e465fe2dc0570788208b3582203d61 (patch)
tree8e35b5f9e14c42b477ae92966cca60962a7e7177 /apps
parent9149ebebbc0e39a00819a30b21b1c653f916510f (diff)
Merged revisions 298683 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r298683 | jpeeler | 2010-12-16 17:29:30 -0600 (Thu, 16 Dec 2010) | 2 lines After recording only silence for a voicemail prepending, restore backup files. ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.2@298684 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-rw-r--r--apps/app_voicemail.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c
index c2f8f7f2a..05f3926af 100644
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -6473,6 +6473,10 @@ static int vm_forwardoptions(struct ast_channel *chan, struct ast_vm_user *vmu,
ast_channel_setoption(chan, AST_OPTION_RXGAIN, &record_gain, sizeof(record_gain), 0);
cmd = ast_play_and_prepend(chan, NULL, msgfile, 0, vm_fmts, &prepend_duration, 1, silencethreshold, maxsilence);
+ if (cmd == 'S') {
+ ast_filerename(backup, msgfile, NULL);
+ }
+
if (record_gain)
ast_channel_setoption(chan, AST_OPTION_RXGAIN, &zero_gain, sizeof(zero_gain), 0);