[svn-commits] qwell: trunk r64762 - in /trunk: ./
apps/app_voicemail.c
svn-commits at lists.digium.com
svn-commits at lists.digium.com
Thu May 17 09:54:36 MST 2007
Author: qwell
Date: Thu May 17 11:54:35 2007
New Revision: 64762
URL: http://svn.digium.com/view/asterisk?view=rev&rev=64762
Log:
Merged revisions 64761 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4
................
r64761 | qwell | 2007-05-17 11:53:27 -0500 (Thu, 17 May 2007) | 12 lines
Merged revisions 64758 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.2
........
r64758 | qwell | 2007-05-17 11:52:38 -0500 (Thu, 17 May 2007) | 4 lines
If we have a negative current message, we shouldn't go back even further...
Issue 9727.
........
................
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=64762&r1=64761&r2=64762
==============================================================================
--- trunk/apps/app_voicemail.c (original)
+++ trunk/apps/app_voicemail.c Thu May 17 11:54:35 2007
@@ -6767,7 +6767,7 @@
}
break;
case '4':
- if (vms.curmsg) {
+ if (vms.curmsg > 0) {
vms.curmsg--;
cmd = play_message(chan, vmu, &vms);
} else {
More information about the svn-commits
mailing list