From: Michael Jerris Date: Thu, 22 May 2008 01:57:04 +0000 (+0000) Subject: fix local_stream with rates on windows (revert r8378) X-Git-Tag: v1.0.0~158 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=201a28e26231f462e27fb6e4dc33390e8e1ecbc9;p=thirdparty%2Ffreeswitch.git fix local_stream with rates on windows (revert r8378) git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8519 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/src/mod/formats/mod_local_stream/mod_local_stream.c b/src/mod/formats/mod_local_stream/mod_local_stream.c index caa84ccd3f..67463fc965 100644 --- a/src/mod/formats/mod_local_stream/mod_local_stream.c +++ b/src/mod/formats/mod_local_stream/mod_local_stream.c @@ -254,7 +254,7 @@ static switch_status_t local_stream_file_open(switch_file_handle_t *handle, cons return SWITCH_STATUS_FALSE; } - alt_path = switch_mprintf("%s%s%d", path, SWITCH_PATH_SEPARATOR, handle->samplerate); + alt_path = switch_mprintf("%s/%d", path, handle->samplerate); switch_mutex_lock(globals.mutex); if ((source = switch_core_hash_find(globals.source_hash, alt_path))) {