]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
use proper directory sep.
authorMichael Jerris <mike@jerris.com>
Tue, 13 May 2008 06:59:52 +0000 (06:59 +0000)
committerMichael Jerris <mike@jerris.com>
Tue, 13 May 2008 06:59:52 +0000 (06:59 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8378 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/formats/mod_local_stream/mod_local_stream.c

index 7a56eb6cf0cbd543d08a60dc9889166eb6c9d772..eb7fc9d24d3337333bf1bc5806c117324e599b76 100644 (file)
@@ -252,7 +252,7 @@ static switch_status_t local_stream_file_open(switch_file_handle_t *handle, cons
                return SWITCH_STATUS_FALSE;
        }
        
-       alt_path = switch_mprintf("%s/%d", path, handle->samplerate);
+       alt_path = switch_mprintf("%s%s%d", path, SWITCH_PATH_SEPARATOR, handle->samplerate);
 
        switch_mutex_lock(globals.mutex);
        if ((source = switch_core_hash_find(globals.source_hash, alt_path))) {