From 7b1f689719133ee78ed06fc876346762474f763b Mon Sep 17 00:00:00 2001 From: jpeeler Date: Thu, 16 Dec 2010 23:31:50 +0000 Subject: Merged revisions 298684 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.6.2 ................ r298684 | jpeeler | 2010-12-16 17:30:59 -0600 (Thu, 16 Dec 2010) | 9 lines 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.8@298685 f38db490-d61c-443f-a65b-d21fe96a405b --- apps/app_voicemail.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c index 69777f8aa..68f80b887 100644 --- a/apps/app_voicemail.c +++ b/apps/app_voicemail.c @@ -6745,6 +6745,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); -- cgit v1.2.3