1
0
mirror of https://github.com/signalwire/freeswitch.git synced 2025-04-06 04:45:30 +00:00

fix LBDING-7

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@10531 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Anthony Minessale 2008-11-24 23:17:03 +00:00
parent 3e05fd297b
commit 4ace4097e3

@ -536,7 +536,7 @@ static switch_status_t chat_send(char *proto, char *from, char *to, char *subjec
*p = '\0'; *p = '\0';
} }
} }
ldl_handle_send_msg(profile->handle, from, to, NULL, body); ldl_handle_send_msg(profile->handle, from, to, NULL, switch_str_nil(body));
} else { } else {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Invalid Profile %s\n", f_host ? f_host : "NULL"); switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Invalid Profile %s\n", f_host ? f_host : "NULL");
return SWITCH_STATUS_FALSE; return SWITCH_STATUS_FALSE;
@ -1713,7 +1713,7 @@ static switch_call_cause_t channel_outgoing_channel(switch_core_session_t *sessi
if ((ptr = strchr(them, '/'))) { if ((ptr = strchr(them, '/'))) {
*ptr = '\0'; *ptr = '\0';
} }
ldl_handle_send_msg(mdl_profile->handle, tech_pvt->us, them, "", cid_msg); ldl_handle_send_msg(mdl_profile->handle, tech_pvt->us, them, "", switch_str_nil(cid_msg));
} }
switch_safe_free(them); switch_safe_free(them);
} }
@ -2464,7 +2464,7 @@ static ldl_status handle_signalling(ldl_handle_t *handle, ldl_session_t *dlsessi
if (profile->auto_reply) { if (profile->auto_reply) {
ldl_handle_send_msg(handle, ldl_handle_send_msg(handle,
(profile->user_flags & LDL_FLAG_COMPONENT) ? to : ldl_handle_get_login(profile->handle), from, "", (profile->user_flags & LDL_FLAG_COMPONENT) ? to : ldl_handle_get_login(profile->handle), from, "",
profile->auto_reply); switch_str_nil(profile->auto_reply));
} }
#endif #endif
@ -2487,7 +2487,7 @@ static ldl_status handle_signalling(ldl_handle_t *handle, ldl_session_t *dlsessi
} }
if ((ci = switch_loadable_module_get_chat_interface(proto))) { if ((ci = switch_loadable_module_get_chat_interface(proto))) {
ci->chat_send(MDL_CHAT_PROTO, from, to, subject, msg, hint); ci->chat_send(MDL_CHAT_PROTO, from, to, subject, switch_str_nil(msg), hint);
} else { } else {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Invalid Chat Interface [%s]!\n", proto); switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Invalid Chat Interface [%s]!\n", proto);
} }