- fix issue when using gdb_port cmd

- bug introduced in r2240

git-svn-id: svn://svn.berlios.de/openocd/trunk@2403 b42882b7-edfa-0310-969c-e2dbd0fdcd60
__archive__
ntfreak 2009-06-25 15:11:57 +00:00
parent 1e8225c738
commit 374f6c8b70
1 changed files with 1 additions and 3 deletions

View File

@ -2242,9 +2242,7 @@ int handle_gdb_port_command(struct command_context_s *cmd_ctx, char *cmd, char *
return ERROR_OK;
}
/* only if the port wasn't overwritten by cmdline */
if (gdb_port == 0)
gdb_port = strtoul(args[0], NULL, 0);
gdb_port = strtoul(args[0], NULL, 0);
return ERROR_OK;
}