From: <zw...@ma...> - 2009-06-30 07:33:55
|
Author: zwelch Date: 2009-06-30 07:33:41 +0200 (Tue, 30 Jun 2009) New Revision: 2421 Modified: trunk/src/openocd.c Log: Make bug reporting output at program start-ups use fewer new lines: - Move repository URL output associate it with the version; they relate. - 'openocd --version' output now appears much more terse, as expected. Modified: trunk/src/openocd.c =================================================================== --- trunk/src/openocd.c 2009-06-30 05:33:17 UTC (rev 2420) +++ trunk/src/openocd.c 2009-06-30 05:33:41 UTC (rev 2421) @@ -253,10 +253,11 @@ } #endif - LOG_OUTPUT("\n\nBUGS? Read http://svn.berlios.de/svnroot/repos/openocd/trunk/BUGS\n\n\n"); - print_version(); + LOG_OUTPUT("For bug reports, read http://svn.berlios.de/svnroot/repos/openocd/trunk/BUGS\n"); + + command_context_mode(cmd_ctx, COMMAND_CONFIG); command_set_output_handler(cmd_ctx, configuration_output_handler, NULL); |