git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@5049 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Brian West 2007-05-01 01:04:07 +00:00
parent c222c58542
commit b3a3ae9c43
4 changed files with 21 additions and 13 deletions

View File

@ -1520,7 +1520,7 @@ static switch_status_t pa_cmd(char *cmd, switch_core_session_t *isession, switch
{
char *argv[1024] = { 0 };
int argc = 0;
char *mycmd = NULL, *devname = NULL;
char *mycmd = NULL;
switch_status_t status = SWITCH_STATUS_SUCCESS;
pa_command_t func = NULL;
int lead = 1, devval = 0;
@ -1616,17 +1616,15 @@ static switch_status_t pa_cmd(char *cmd, switch_core_session_t *isession, switch
}
if (func) {
status = func(&argv[lead], argc - lead, stream);
} else {
if (devname) {
if (devval > 0) {
stream->write_function(stream, "%s set to %d\n", devname, devval);
} else {
stream->write_function(stream, "%s not set (invalid value)\n", devname);
}
} else {
stream->write_function(stream, "Unknown Command [%s]\n", argv[0]);
if (stream->event) {
stream->write_function(stream, "<pre>");
}
status = func(&argv[lead], argc - lead, stream);
if (stream->event) {
stream->write_function(stream, "\n\n</pre>");
}
} else {
stream->write_function(stream, "Unknown Command [%s]\n", argv[0]);
}
done:

View File

@ -1851,7 +1851,13 @@ static switch_status_t pa_cmd(char *cmd, switch_core_session_t *isession, switch
}
if (func) {
if (stream->event) {
stream->write_function(stream, "<pre>");
}
status = func(&argv[lead], argc - lead, stream);
if (stream->event) {
stream->write_function(stream, "\n\n</pre>");
}
} else {
if (devname) {
if (devval > 0) {

View File

@ -770,7 +770,11 @@ void sofia_presence_handle_sip_i_subscribe(int status,
nua_respond(nh, SIP_202_ACCEPTED,
NUTAG_WITH_THIS(nua),
SIPTAG_SUBSCRIPTION_STATE_STR(sstr), SIPTAG_FROM(sip->sip_to), SIPTAG_TO(sip->sip_from), SIPTAG_CONTACT_STR(to_str), TAG_END());
SIPTAG_SUBSCRIPTION_STATE_STR(sstr),
SIPTAG_FROM(sip->sip_to),
SIPTAG_TO(sip->sip_from),
SIPTAG_CONTACT_STR(contact_str),
TAG_END());

View File

@ -119,7 +119,7 @@ static switch_xml_t xml_url_fetch(const char *section, const char *tag_name, con
curl_easy_cleanup(curl_handle);
close(config_data.fd);
} else {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Error!\n");
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Error Opening temp file!\n");
}
switch_safe_free(data);