[asterisk-commits] mmichelson: trunk r79529 - in /trunk: ./ apps/app_voicemail.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Aug 15 09:27:36 CDT 2007
Author: mmichelson
Date: Wed Aug 15 09:27:35 2007
New Revision: 79529
URL: http://svn.digium.com/view/asterisk?view=rev&rev=79529
Log:
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)
........
Modified:
trunk/ (props changed)
trunk/apps/app_voicemail.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.
Modified: trunk/apps/app_voicemail.c
URL: http://svn.digium.com/view/asterisk/trunk/apps/app_voicemail.c?view=diff&rev=79529&r1=79528&r2=79529
==============================================================================
--- trunk/apps/app_voicemail.c (original)
+++ trunk/apps/app_voicemail.c Wed Aug 15 09:27:35 2007
@@ -5961,7 +5961,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