[svn-commits] wedhorn: branch 11 r377985 - /branches/11/channels/chan_skinny.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Thu Dec 13 12:19:40 CST 2012


Author: wedhorn
Date: Thu Dec 13 12:19:35 2012
New Revision: 377985

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=377985
Log:
Fix skinny debug tab completion

Review the syntax of the 'skinny debug' command to show more than 
just 'show' for options to 'skinny debug' command.

(closes issue AST-20789)
Reported by: snuffy
Tested by: snuffy, myself
Patches: 
    skinny-debug.diff uploaded by snuffy (license 5024)

Modified:
    branches/11/channels/chan_skinny.c

Modified: branches/11/channels/chan_skinny.c
URL: http://svnview.digium.com/svn/asterisk/branches/11/channels/chan_skinny.c?view=diff&rev=377985&r1=377984&r2=377985
==============================================================================
--- branches/11/channels/chan_skinny.c (original)
+++ branches/11/channels/chan_skinny.c Thu Dec 13 12:19:35 2012
@@ -3310,9 +3310,9 @@
 
 	switch (cmd) {
 	case CLI_INIT:
-		e->command = "skinny debug [show|{off|all|packet|sub|audio|template|lock}]";
+		e->command = "skinny debug {audio|hint|lock|off|packet|show|sub|template|thread}";
 		e->usage =
-			"Usage: skinny debug [show|{off|on|packet|sub|audio|template|lock}]\n"
+			"Usage: skinny debug {audio|hint|lock|off|packet|show|sub|template|thread}\n"
 			"       Enables/Disables various Skinny debugging messages\n";
 		return NULL;
 	case CLI_GENERATE:




More information about the svn-commits mailing list