[asterisk-commits] mmichelson: branch 1.4 r79527 - /branches/1.4/apps/app_voicemail.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Aug 15 09:26:41 CDT 2007
Author: mmichelson
Date: Wed Aug 15 09:26:40 2007
New Revision: 79527
URL: http://svn.digium.com/view/asterisk?view=rev&rev=79527
Log:
Fixed an error in the Russian language voicemail intro.
(issue #10458, reported and patched by Oleh)
Modified:
branches/1.4/apps/app_voicemail.c
Modified: branches/1.4/apps/app_voicemail.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/apps/app_voicemail.c?view=diff&rev=79527&r1=79526&r2=79527
==============================================================================
--- branches/1.4/apps/app_voicemail.c (original)
+++ branches/1.4/apps/app_voicemail.c Wed Aug 15 09:26:40 2007
@@ -5603,7 +5603,7 @@
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) {
More information about the asterisk-commits
mailing list