aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authormmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2007-08-15 14:26:40 +0000
committermmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2007-08-15 14:26:40 +0000
commitc36942ed43456c936f5fb939ea6a64e87c299fe3 (patch)
tree5c2626e0f8f6ca6601f453eca049be6a0f3c2ae8 /apps
parent871594800095f7f5f9e7998a088c706443eb0baf (diff)
Fixed an error in the Russian language voicemail intro.
(issue #10458, reported and patched by Oleh) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@79527 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-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 403e9b2d1..024e2cdc9 100644
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -5603,7 +5603,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) {