[svn-commits] seanbright: branch 1.6.2 r252850 - in /branches/1.6.2: ./ res/res_clialiases.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Tue Mar 16 14:38:43 CDT 2010


Author: seanbright
Date: Tue Mar 16 14:38:39 2010
New Revision: 252850

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=252850
Log:
Merged revisions 252848 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk

........
  r252848 | seanbright | 2010-03-16 15:36:24 -0400 (Tue, 16 Mar 2010) | 10 lines
  
  Include an extra newline after "Aliased CLI command" to get back the prompt.
  
  The other issue mentioned in this bug will be more difficult to resolve since we
  have no idea (right now) of knowing if the command that is aliased has been
  installed yet.
  
  (issue #16978)
  Reported by: jw-asterisk
  Tested by: seanbright
........

Modified:
    branches/1.6.2/   (props changed)
    branches/1.6.2/res/res_clialiases.c

Propchange: branches/1.6.2/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.

Modified: branches/1.6.2/res/res_clialiases.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.6.2/res/res_clialiases.c?view=diff&rev=252850&r1=252849&r2=252850
==============================================================================
--- branches/1.6.2/res/res_clialiases.c (original)
+++ branches/1.6.2/res/res_clialiases.c Tue Mar 16 14:38:39 2010
@@ -210,7 +210,7 @@
 			strcpy(alias->real_cmd, v1->value);
 			alias->cli_entry.handler = cli_alias_passthrough;
 			alias->cli_entry.command = alias->alias;
-			alias->cli_entry.usage = "Aliased CLI Command";
+			alias->cli_entry.usage = "Aliased CLI Command\n";
 
 			ast_cli_register(&alias->cli_entry);
 			ao2_link(cli_aliases, alias);




More information about the svn-commits mailing list