diff options
author | David Brownell <dbrownell@users.sourceforge.net> | 2009-11-14 12:42:50 -0800 |
---|---|---|
committer | David Brownell <dbrownell@users.sourceforge.net> | 2009-11-14 12:42:50 -0800 |
commit | 7f48f463a1441c34790b462add2f43b38b44887b (patch) | |
tree | 802961664fb3921451596c255fc1d209cc4d640a /src/openocd.c | |
parent | c93ae60bce40b196cb5594e8e4723f3d567ff22e (diff) | |
download | riscv-openocd-7f48f463a1441c34790b462add2f43b38b44887b.zip riscv-openocd-7f48f463a1441c34790b462add2f43b38b44887b.tar.gz riscv-openocd-7f48f463a1441c34790b462add2f43b38b44887b.tar.bz2 |
remove annoying $URL$ startup message
It's completely unused; the obnoxious "DANGER!!!" comments
don't even explain what it was doing (shorthand SVN magic).
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Diffstat (limited to 'src/openocd.c')
-rw-r--r-- | src/openocd.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/openocd.c b/src/openocd.c index 78f220c..234b01c 100644 --- a/src/openocd.c +++ b/src/openocd.c @@ -51,21 +51,6 @@ #define OPENOCD_VERSION \ "Open On-Chip Debugger " VERSION RELSTR " (" PKGBLDDATE ")" -static void print_version(void) -{ - /* DANGER!!! make sure that the line below does not appear in a patch, do not remove */ - /* DANGER!!! make sure that the line below does not appear in a patch, do not remove */ - /* DANGER!!! make sure that the line below does not appear in a patch, do not remove */ - /* DANGER!!! make sure that the line below does not appear in a patch, do not remove */ - /* DANGER!!! make sure that the line below does not appear in a patch, do not remove */ - LOG_OUTPUT("$URL$\n"); - /* DANGER!!! make sure that the line above does not appear in a patch, do not remove */ - /* DANGER!!! make sure that the line above does not appear in a patch, do not remove */ - /* DANGER!!! make sure that the line above does not appear in a patch, do not remove */ - /* DANGER!!! make sure that the line above does not appear in a patch, do not remove */ - /* DANGER!!! make sure that the line above does not appear in a patch, do not remove */ -} - /* Give TELNET a way to find out what version this is */ COMMAND_HANDLER(handle_version_command) { @@ -257,8 +242,6 @@ int openocd_main(int argc, char *argv[]) } #endif - print_version(); - LOG_OUTPUT("For bug reports, read\n\t" "http://openocd.berlios.de/doc/doxygen/bugs.html" "\n"); |