summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Michelson <mmichelson@digium.com>2007-08-15 14:27:35 +0000
committerMark Michelson <mmichelson@digium.com>2007-08-15 14:27:35 +0000
commit425aca97c48d42fc9a20588d39373f457e77848b (patch)
treee42bd388b0ad8eac4b1b3c61ffcb6b74081dd234
parent3512cefb1073e9116c3553aabd2ad8de76d8ba0d (diff)
Merged revisions 79527 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r79527 | mmichelson | 2007-08-15 09:26:40 -0500 (Wed, 15 Aug 2007) | 5 lines Fixed an error in the Russian language voicemail intro. (issue #10458, reported and patched by Oleh) ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@79529 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-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 471fb2d05..824c102ae 100644
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -5961,7 +5961,7 @@ static int vm_intro_ru(struct ast_channel *chan,struct vm_state *vms)
if (!res && vms->oldmessages) {
lastnum = get_lastdigits(vms->oldmessages);
- dcnum = vms->newmessages - lastnum;
+ dcnum = vms->oldmessages - lastnum;
if (dcnum)
res = say_and_wait(chan, dcnum, chan->language);
if (!res && lastnum) {