From: Tilghman Lesher Date: Mon, 20 Feb 2006 23:01:12 +0000 (+0000) Subject: Would be nice to tell people to look in the right file to increase a constant X-Git-Tag: 1.2.7.1~129 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6b682d34ff3ad5286d1d07c38a2ae09e9f1519de;p=thirdparty%2Fasterisk.git Would be nice to tell people to look in the right file to increase a constant git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@10577 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/app.c b/app.c index af0f6c3556..b7bc31fe12 100644 --- a/app.c +++ b/app.c @@ -589,7 +589,7 @@ int ast_play_and_record(struct ast_channel *chan, const char *playfile, const ch 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 @@ int ast_play_and_prepend(struct ast_channel *chan, char *playfile, char *recordf 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);