aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntonio Borneo <borneo.antonio@gmail.com>2020-07-12 00:33:29 +0200
committerAntonio Borneo <borneo.antonio@gmail.com>2020-07-26 20:14:00 +0100
commit1f08ada36681245e53251d3210ec8706391c2fc9 (patch)
tree2629cda5072e63116d73a1c4ef80f6b3ef16a839
parente527937779b990aeeaefd5e5224f6f899e2f67a7 (diff)
downloadopenocd-jz4730-1f08ada36681245e53251d3210ec8706391c2fc9.tar.gz
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
-rw-r--r--src/server/gdb_server.c6
-rw-r--r--src/server/server.c2
2 files changed, 4 insertions, 4 deletions
diff --git a/src/server/gdb_server.c b/src/server/gdb_server.c
index 17042fbf5..327d96b17 100644
--- a/src/server/gdb_server.c
+++ b/src/server/gdb_server.c
@@ -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;
diff --git a/src/server/server.c b/src/server/server.c
index 23a15ef9a..d96f0b6cf 100644
--- a/src/server/server.c
+++ b/src/server/server.c
@@ -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);