[asterisk-commits] trunk r10578 - in /trunk: ./ app.c

asterisk-commits at lists.digium.com asterisk-commits at lists.digium.com
Mon Feb 20 16:02:32 MST 2006


Author: tilghman
Date: Mon Feb 20 17:02:31 2006
New Revision: 10578

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

........
r10577 | tilghman | 2006-02-20 17:01:12 -0600 (Mon, 20 Feb 2006) | 2 lines

Would be nice to tell people to look in the right file to increase a constant

........

Modified:
    trunk/   (props changed)
    trunk/app.c

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

Modified: trunk/app.c
URL: http://svn.digium.com/view/asterisk/trunk/app.c?rev=10578&r1=10577&r2=10578&view=diff
==============================================================================
--- trunk/app.c (original)
+++ trunk/app.c Mon Feb 20 17:02:31 2006
@@ -594,7 +594,7 @@
 
 	while((fmt = strsep(&stringp, "|"))) {
 		if (fmtcnt > MAX_OTHER_FORMATS - 1) {
-			ast_log(LOG_WARNING, "Please increase MAX_OTHER_FORMATS in app_voicemail.c\n");
+			ast_log(LOG_WARNING, "Please increase MAX_OTHER_FORMATS in app.c\n");
 			break;
 		}
 		sfmt[fmtcnt++] = ast_strdupa(fmt);
@@ -824,7 +824,7 @@
 	
 	while((fmt = strsep(&stringp, "|"))) {
 		if (fmtcnt > MAX_OTHER_FORMATS - 1) {
-			ast_log(LOG_WARNING, "Please increase MAX_OTHER_FORMATS in app_voicemail.c\n");
+			ast_log(LOG_WARNING, "Please increase MAX_OTHER_FORMATS in app.c\n");
 			break;
 		}
 		sfmt[fmtcnt++] = ast_strdupa(fmt);



More information about the asterisk-commits mailing list