[asterisk-commits] branch 1.2 r10577 - /branches/1.2/app.c

asterisk-commits at lists.digium.com asterisk-commits at lists.digium.com
Mon Feb 20 16:01:13 MST 2006


Author: tilghman
Date: Mon Feb 20 17:01:12 2006
New Revision: 10577

URL: http://svn.digium.com/view/asterisk?rev=10577&view=rev
Log:
Would be nice to tell people to look in the right file to increase a constant

Modified:
    branches/1.2/app.c

Modified: branches/1.2/app.c
URL: http://svn.digium.com/view/asterisk/branches/1.2/app.c?rev=10577&r1=10576&r2=10577&view=diff
==============================================================================
--- branches/1.2/app.c (original)
+++ branches/1.2/app.c Mon Feb 20 17:01:12 2006
@@ -589,7 +589,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);
@@ -819,7 +819,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