From 2c9121cd85e1262f9d759babdddb978d3ca0451d Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Mon, 20 Apr 2015 13:40:19 -0500 Subject: [PATCH] FS-7503: increase max --- src/switch_core_file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/switch_core_file.c b/src/switch_core_file.c index 528681363f..f8026c31ea 100644 --- a/src/switch_core_file.c +++ b/src/switch_core_file.c @@ -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);