From e873a6d27cc1b0323b5687f6aecb1ee3c513688c Mon Sep 17 00:00:00 2001 From: oharboe Date: Wed, 17 Dec 2008 14:55:12 +0000 Subject: check syntax for init/version git-svn-id: svn://svn.berlios.de/openocd/trunk@1257 b42882b7-edfa-0310-969c-e2dbd0fdcd60 --- src/openocd.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/openocd.c') diff --git a/src/openocd.c b/src/openocd.c index 471a097a..e46f62d2 100644 --- a/src/openocd.c +++ b/src/openocd.c @@ -82,6 +82,9 @@ void print_version(void) /* Give TELNET a way to find out what version this is */ int handle_version_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc) { + if (argc!=0) + return ERROR_COMMAND_SYNTAX_ERROR; + command_print(cmd_ctx, OPENOCD_VERSION); return ERROR_OK; @@ -123,6 +126,10 @@ int ioutil_init(struct command_context_s *cmd_ctx); /* OpenOCD can't really handle failure of this command. Patches welcome! :-) */ int handle_init_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc) { + + if (argc!=0) + return ERROR_COMMAND_SYNTAX_ERROR; + int retval; static int initialized=0; if (initialized) -- cgit v1.2.3