[svn-commits] file: branch 1.4 r47457 - /branches/1.4/channels/chan_h323.c

svn-commits at lists.digium.com svn-commits at lists.digium.com
Fri Nov 10 12:36:26 MST 2006


Author: file
Date: Fri Nov 10 13:36:25 2006
New Revision: 47457

URL: http://svn.digium.com/view/asterisk?view=rev&rev=47457
Log:
Let's give this a go...

Modified:
    branches/1.4/channels/chan_h323.c

Modified: branches/1.4/channels/chan_h323.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/channels/chan_h323.c?view=diff&rev=47457&r1=47456&r2=47457
==============================================================================
--- branches/1.4/channels/chan_h323.c (original)
+++ branches/1.4/channels/chan_h323.c Fri Nov 10 13:36:25 2006
@@ -2643,15 +2643,13 @@
 
 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[] = {
 	{ { "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",



More information about the svn-commits mailing list