[svn-commits] russell: branch 1.4 r47372 - /branches/1.4/main/cli.c

svn-commits at lists.digium.com svn-commits at lists.digium.com
Thu Nov 9 09:18:34 MST 2006


Author: russell
Date: Thu Nov  9 10:18:33 2006
New Revision: 47372

URL: http://svn.digium.com/view/asterisk?view=rev&rev=47372
Log:
Fix "core debug channel <whatever>".  I guess someone needs to go through and
audit every CLI command that changed number of arguments ...

Modified:
    branches/1.4/main/cli.c

Modified: branches/1.4/main/cli.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/main/cli.c?view=diff&rev=47372&r1=47371&r2=47372
==============================================================================
--- branches/1.4/main/cli.c (original)
+++ branches/1.4/main/cli.c Thu Nov  9 10:18:33 2006
@@ -726,18 +726,18 @@
 	int is_all;
 
 	/* 'debug channel {all|chan_id}' */
-	if (argc != 3)
-		return RESULT_SHOWUSAGE;
-
-	is_all = !strcasecmp("all", argv[2]);
+	if (argc != 4)
+		return RESULT_SHOWUSAGE;
+
+	is_all = !strcasecmp("all", argv[3]);
 	if (is_all) {
 		global_fin |= DEBUGCHAN_FLAG;
 		global_fout |= DEBUGCHAN_FLAG;
 		c = ast_channel_walk_locked(NULL);
 	} else {
-		c = ast_get_channel_by_name_locked(argv[2]);
+		c = ast_get_channel_by_name_locked(argv[3]);
 		if (c == NULL)
-			ast_cli(fd, "No such channel %s\n", argv[2]);
+			ast_cli(fd, "No such channel %s\n", argv[3]);
 	}
 	while (c) {
 		if (!(c->fin & DEBUGCHAN_FLAG) || !(c->fout & DEBUGCHAN_FLAG)) {



More information about the svn-commits mailing list