From 350fca115f7f290ba13b1ce9269d6e26caf7c745 Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Tue, 21 Oct 2008 19:19:49 +0000 Subject: [PATCH] add tab complete git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@10099 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/mod/applications/mod_commands/mod_commands.c | 3 +++ src/mod/endpoints/mod_sofia/sofia_glue.c | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/mod/applications/mod_commands/mod_commands.c b/src/mod/applications/mod_commands/mod_commands.c index 2153602462..bd27f78e33 100644 --- a/src/mod/applications/mod_commands/mod_commands.c +++ b/src/mod/applications/mod_commands/mod_commands.c @@ -2870,8 +2870,11 @@ SWITCH_MODULE_LOAD_FUNCTION(mod_commands_load) switch_console_set_complete("add fsctl shutdown"); switch_console_set_complete("add fsctl shutdown restart"); switch_console_set_complete("add fsctl shutdown elegant"); + switch_console_set_complete("add fsctl shutdown asap"); switch_console_set_complete("add fsctl shutdown elegant restart"); switch_console_set_complete("add fsctl shutdown restart elegant"); + switch_console_set_complete("add fsctl shutdown asap restart"); + switch_console_set_complete("add fsctl shutdown restart asap"); switch_console_set_complete("add fsctl shutdown cancel"); switch_console_set_complete("add fsctl sps"); switch_console_set_complete("add fsctl sync_clock"); diff --git a/src/mod/endpoints/mod_sofia/sofia_glue.c b/src/mod/endpoints/mod_sofia/sofia_glue.c index 5bacb6b2d4..f481ecc8b5 100644 --- a/src/mod/endpoints/mod_sofia/sofia_glue.c +++ b/src/mod/endpoints/mod_sofia/sofia_glue.c @@ -1087,7 +1087,7 @@ switch_status_t sofia_glue_do_invite(switch_core_session_t *session) const char *invite_params = switch_channel_get_variable(tech_pvt->channel, "sip_invite_params"); if (switch_strlen_zero(tech_pvt->dest)) { - switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "URL Error! [%s]\n", tech_pvt->dest); + switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "URL Error!\n"); return SWITCH_STATUS_FALSE; }