more path bs

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@6107 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Brian West 2007-10-31 20:04:11 +00:00
parent e545da153e
commit 141ce4a8e1
1 changed files with 4 additions and 4 deletions

View File

@ -2027,7 +2027,7 @@ static switch_status_t conference_play_file(conference_obj_t * conference, char
if (!switch_is_file_path(file)) { if (!switch_is_file_path(file)) {
if (conference->sound_prefix) { if (conference->sound_prefix) {
if (!(dfile = switch_mprintf("%s/%s", conference->sound_prefix, file))) { if (!(dfile = switch_mprintf("%s%s%s", conference->sound_prefix, SWITCH_PATH_SEPARATOR, file))) {
goto done; goto done;
} }
file = dfile; file = dfile;
@ -2129,7 +2129,7 @@ static switch_status_t conference_member_play_file(conference_member_t * member,
if (!switch_is_file_path(file)) { if (!switch_is_file_path(file)) {
if (member->conference->sound_prefix) { if (member->conference->sound_prefix) {
if (!(dfile = switch_mprintf("%s/%s", member->conference->sound_prefix, file))) { if (!(dfile = switch_mprintf("%s%s%s", member->conference->sound_prefix, SWITCH_PATH_SEPARATOR, file))) {
goto done; goto done;
} }
file = dfile; file = dfile;
@ -3814,7 +3814,7 @@ static switch_status_t conference_local_play_file(conference_obj_t * conference,
if (conference->sound_prefix) { if (conference->sound_prefix) {
if (!(dpath = switch_mprintf("%s/%s", conference->sound_prefix, path))) { if (!(dpath = switch_mprintf("%s%s%s", conference->sound_prefix, SWITCH_PATH_SEPARATOR, path))) {
status = SWITCH_STATUS_MEMERR; status = SWITCH_STATUS_MEMERR;
goto done; goto done;
} }
@ -4276,7 +4276,7 @@ SWITCH_STANDARD_APP(conference_function)
char *dfile = NULL; char *dfile = NULL;
if (conference->sound_prefix) { if (conference->sound_prefix) {
dfile = switch_mprintf("%s/%s", conference->sound_prefix, conference->kicked_sound); dfile = switch_mprintf("%s%s%s", conference->sound_prefix, SWITCH_PATH_SEPARATOR, conference->kicked_sound);
assert(dfile); assert(dfile);
toplay = dfile; toplay = dfile;
} else { } else {