add process_cdr variable

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7213 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Anthony Minessale 2008-01-14 15:44:05 +00:00
parent f0e7a5ea1c
commit 221c32e846
1 changed files with 2 additions and 2 deletions

View File

@ -424,9 +424,9 @@ SWITCH_DECLARE(void) switch_core_session_run(switch_core_session_t *session)
if (!switch_strlen_zero(var)) {
if (!strcasecmp(var, "a_only") && !switch_channel_test_flag(session->channel, CF_ORIGINATOR)) {
if (!strcasecmp(var, "a_only") && switch_channel_get_originator_caller_profile(session->channel)) {
do_extra_handlers = 0;
} else if (!strcasecmp(var, "b_only") && switch_channel_test_flag(session->channel, CF_ORIGINATOR)) {
} else if (!strcasecmp(var, "b_only") && switch_channel_get_originatee_caller_profile(session->channel)) {
do_extra_handlers = 0;
} else if (!switch_true(var)) {
do_extra_handlers = 0;