git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@11682 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Anthony Minessale 2009-02-07 21:22:12 +00:00
parent 0c906fa371
commit 0aa16a65d6
1 changed files with 1 additions and 1 deletions

View File

@ -421,7 +421,7 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_record_file(switch_core_session_t *se
} }
vval = switch_channel_get_variable(channel, "enable_file_write_buffering"); vval = switch_channel_get_variable(channel, "enable_file_write_buffering");
if (!vval || !switch_true(vval)) { if (!vval || switch_true(vval)) {
fh->pre_buffer_datalen = SWITCH_DEFAULT_FILE_BUFFER_LEN; fh->pre_buffer_datalen = SWITCH_DEFAULT_FILE_BUFFER_LEN;
} }