aboutsummaryrefslogtreecommitdiffstats
path: root/channels/chan_h323.c
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2006-11-10 19:36:25 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2006-11-10 19:36:25 +0000
commite08b980b0e22b6510ac16074549c746d8bf41972 (patch)
tree7af2283514835d8c29d19f4a1b344abd5be82b37 /channels/chan_h323.c
parentb897b281d90895242ab12109b9799a247642807f (diff)
Let's give this a go...
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@47457 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels/chan_h323.c')
-rw-r--r--channels/chan_h323.c20
1 files changed, 9 insertions, 11 deletions
diff --git a/channels/chan_h323.c b/channels/chan_h323.c
index 478644be7..294d1b59e 100644
--- a/channels/chan_h323.c
+++ b/channels/chan_h323.c
@@ -2643,15 +2643,13 @@ static char h323_reload_usage[] =
static struct ast_cli_entry cli_h323_no_trace_deprecated = {
{ "h.323", "no", "trace", NULL },
- h323_no_trace, "Disable H.323 Stack Tracing",
- no_trace_usage };
-};
+ h323_no_trace, "Disable H.323 Stack Tracing",
+ no_trace_usage };
static struct ast_cli_entry cli_h323_no_debug_deprecated = {
{ "h.323", "no", "debug", NULL },
- h323_no_debug, "Disable H.323 debug",
- no_debug_usage };
-};
+ h323_no_debug, "Disable H.323 debug",
+ no_debug_usage };
static struct ast_cli_entry cli_h323_debug_deprecated = {
{ "h.323", "debug", NULL },
@@ -2671,23 +2669,23 @@ static struct ast_cli_entry cli_h323_gk_cycle_deprecated = {
static struct ast_cli_entry cli_h323[] = {
{ { "h323", "set", "trace", NULL },
h323_do_trace, "Enable H.323 Stack Tracing",
- trace_usage, NULL, cli_h323_trace_deprecated },
+ trace_usage, NULL, &cli_h323_trace_deprecated },
{ { "h323", "set", "trace", "off", NULL },
h323_no_trace, "Disable H.323 Stack Tracing",
- no_trace_usage, NULL, cli_h323_no_trace_deprecated },
+ no_trace_usage, NULL, &cli_h323_no_trace_deprecated },
{ { "h323", "set", "debug", NULL },
h323_do_debug, "Enable H.323 debug",
- debug_usage, NULL, cli_h323_debug_deprecated },
+ debug_usage, NULL, &cli_h323_debug_deprecated },
{ { "h323", "set", "debug", "off", NULL },
h323_no_debug, "Disable H.323 debug",
- no_debug_usage, NULL, cli_h323_no_debug_deprecated },
+ no_debug_usage, NULL, &cli_h323_no_debug_deprecated },
{ { "h323", "cycle", "gk", NULL },
h323_gk_cycle, "Manually re-register with the Gatekeper",
- show_cycle_usage, NULL, cli_h323_gk_cycle_deprecated },
+ show_cycle_usage, NULL, &cli_h323_gk_cycle_deprecated },
{ { "h323", "hangup", NULL },
h323_ep_hangup, "Manually try to hang up a call",