server: fix minor typos
Change-Id: Ibf835dc174a1a160ec0d57000a113c35f2713045 Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com> Reviewed-on: http://openocd.zylin.com/5760 Tested-by: jenkins
This commit is contained in:
parent
e527937779
commit
1f08ada366
|
@ -68,7 +68,7 @@ struct target_desc_format {
|
|||
|
||||
/* private connection data for GDB */
|
||||
struct gdb_connection {
|
||||
char buffer[GDB_BUFFER_SIZE + 1]; /* Extra byte for nul-termination */
|
||||
char buffer[GDB_BUFFER_SIZE + 1]; /* Extra byte for null-termination */
|
||||
char *buf_p;
|
||||
int buf_cnt;
|
||||
bool ctrl_c;
|
||||
|
@ -3221,7 +3221,7 @@ static void gdb_sig_halted(struct connection *connection)
|
|||
static int gdb_input_inner(struct connection *connection)
|
||||
{
|
||||
/* Do not allocate this on the stack */
|
||||
static char gdb_packet_buffer[GDB_BUFFER_SIZE + 1]; /* Extra byte for nul-termination */
|
||||
static char gdb_packet_buffer[GDB_BUFFER_SIZE + 1]; /* Extra byte for null-termination */
|
||||
|
||||
struct target *target;
|
||||
char const *packet = gdb_packet_buffer;
|
||||
|
@ -3503,7 +3503,7 @@ static int gdb_target_start(struct target *target, const char *port)
|
|||
ret = add_service("gdb",
|
||||
port, 1, &gdb_new_connection, &gdb_input,
|
||||
&gdb_connection_closed, gdb_service);
|
||||
/* initialialize all targets gdb service with the same pointer */
|
||||
/* initialize all targets gdb service with the same pointer */
|
||||
{
|
||||
struct target_list *head;
|
||||
struct target *curr;
|
||||
|
|
|
@ -325,7 +325,7 @@ int add_service(char *name,
|
|||
#endif
|
||||
} else if (c->type == CONNECTION_PIPE) {
|
||||
#ifdef _WIN32
|
||||
/* we currenty do not support named pipes under win32
|
||||
/* we currently do not support named pipes under win32
|
||||
* so exit openocd for now */
|
||||
LOG_ERROR("Named pipes currently not supported under this os");
|
||||
free_service(c);
|
||||
|
|
Loading…
Reference in New Issue