mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-30 14:06:04 +00:00
fix operator priority
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@15437 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
7580128484
commit
227bf9580a
@ -1158,7 +1158,7 @@ static switch_status_t create_file(switch_core_session_t *session, vm_profile_t
|
|||||||
got_file = 1;
|
got_file = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (limit && (*message_len = fh.samples_out / fh.samplerate ? fh.samplerate : 8000) < profile->min_record_len) {
|
if (limit && (*message_len = fh.samples_out / (fh.samplerate ? fh.samplerate : 8000)) < profile->min_record_len) {
|
||||||
if (unlink(file_path) != 0) {
|
if (unlink(file_path) != 0) {
|
||||||
switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_WARNING, "Failed to delete file [%s]\n", file_path);
|
switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_WARNING, "Failed to delete file [%s]\n", file_path);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user