[svn-commits] tilghman: branch 1.6.1 r236669 - in /branches/1.6.1: ./ apps/app_voicemail.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Mon Dec 28 11:40:13 CST 2009


Author: tilghman
Date: Mon Dec 28 11:40:11 2009
New Revision: 236669

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=236669
Log:
Merged revisions 236667 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk

........
  r236667 | tilghman | 2009-12-28 11:37:46 -0600 (Mon, 28 Dec 2009) | 4 lines
  
  Use recommended option, not deprecated option.
  (closes issue #16515)
   Reported by: ManChicken
........

Modified:
    branches/1.6.1/   (props changed)
    branches/1.6.1/apps/app_voicemail.c

Propchange: branches/1.6.1/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.

Modified: branches/1.6.1/apps/app_voicemail.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.6.1/apps/app_voicemail.c?view=diff&rev=236669&r1=236668&r2=236669
==============================================================================
--- branches/1.6.1/apps/app_voicemail.c (original)
+++ branches/1.6.1/apps/app_voicemail.c Mon Dec 28 11:40:11 2009
@@ -10653,7 +10653,7 @@
 			if (sscanf(val, "%30d", &x) == 1) {
 				vmminsecs = x;
 				if (maxsilence / 1000 >= vmminsecs) {
-					ast_log(AST_LOG_WARNING, "maxsilence should be less than minmessage or you may get empty messages\n");
+					ast_log(AST_LOG_WARNING, "maxsilence should be less than minsecs or you may get empty messages\n");
 				}
 			} else {
 				ast_log(AST_LOG_WARNING, "Invalid min message time length\n");




More information about the svn-commits mailing list