FS-7503: increase max

This commit is contained in:
Anthony Minessale 2015-04-20 13:40:19 -05:00 committed by Michael Jerris
parent fa4be8326d
commit 2c9121cd85
1 changed files with 1 additions and 1 deletions

View File

@ -167,7 +167,7 @@ SWITCH_DECLARE(switch_status_t) switch_core_perform_file_open(const char *file,
tmp *= 1048576;
}
if (tmp > 0 && tmp < 52428800 /*50mb*/) {
if (tmp > 0 && tmp < 104857600 /*100mb*/) {
fh->mm.vbuf = tmp;
} else {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Invalid buffer size: %d\n", tmp);