thanks _Vile

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4408 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Anthony Minessale 2007-02-27 22:53:57 +00:00
parent df3effba3f
commit d7a28c73dd

View File

@ -511,7 +511,7 @@ static switch_status_t originate_function(char *cmd, switch_core_session_t *ises
if (switch_ivr_originate(NULL, &caller_session, &cause, aleg, timeout, &noop_state_handler, cid_name, cid_num, NULL) != SWITCH_STATUS_SUCCESS) { if (switch_ivr_originate(NULL, &caller_session, &cause, aleg, timeout, &noop_state_handler, cid_name, cid_num, NULL) != SWITCH_STATUS_SUCCESS) {
if (machine) { if (machine) {
stream->write_function(stream, "fail: %s", switch_channel_cause2str(cause)); stream->write_function(stream, "fail: %s\n", switch_channel_cause2str(cause));
} else { } else {
stream->write_function(stream, "Cannot Create Outgoing Channel! [%s] cause: %s\n", aleg, switch_channel_cause2str(cause)); stream->write_function(stream, "Cannot Create Outgoing Channel! [%s] cause: %s\n", aleg, switch_channel_cause2str(cause));
} }