git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@5423
d0543943-73ff-0310-b7d9-
9358b9ac24b2
if (!(v = switch_core_hash_find(channel->variables, varname))) {
if (!channel->caller_profile || !(v = switch_caller_get_field_by_name(channel->caller_profile, varname))) {
if (!strcmp(varname, "base_dir")) {
- return SWITCH_GLOBAL_dirs.base_dir;
+ v = SWITCH_GLOBAL_dirs.base_dir;
+ } else {
+ v = switch_core_get_variable(varname);
}
- v = switch_core_get_variable(varname);
}
}
switch_mutex_unlock(channel->profile_mutex);