[asterisk-commits] trunk r14279 - in /trunk: ./ apps/app_voicemail.c

asterisk-commits at lists.digium.com asterisk-commits at lists.digium.com
Wed Mar 22 15:28:37 MST 2006


Author: file
Date: Wed Mar 22 16:28:36 2006
New Revision: 14279

URL: http://svn.digium.com/view/asterisk?rev=14279&view=rev
Log:
Merged revisions 14276 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.2

........
r14276 | file | 2006-03-22 18:18:32 -0400 (Wed, 22 Mar 2006) | 2 lines

Fix a minor code issue

........

Modified:
    trunk/   (props changed)
    trunk/apps/app_voicemail.c

Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.2-merged' - no diff available.

Modified: trunk/apps/app_voicemail.c
URL: http://svn.digium.com/view/asterisk/trunk/apps/app_voicemail.c?rev=14279&r1=14278&r2=14279&view=diff
==============================================================================
--- trunk/apps/app_voicemail.c (original)
+++ trunk/apps/app_voicemail.c Wed Mar 22 16:28:36 2006
@@ -6718,12 +6718,13 @@
  		case '3':
  			message_exists = 0;
  			/* Record */
- 			if (recorded == 1)
+ 			if (recorded == 1) {
 				if (option_verbose > 2)
 					ast_verbose(VERBOSE_PREFIX_3 "Re-recording the message\n");
- 			else	
+ 			} else {	
 				if (option_verbose > 2)
 					ast_verbose(VERBOSE_PREFIX_3 "Recording the message\n");
+			}
 			if (recorded && outsidecaller) {
  				cmd = ast_play_and_wait(chan, INTRO);
  				cmd = ast_play_and_wait(chan, "beep");



More information about the asterisk-commits mailing list