summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2009-11-24 20:01:15 +0100
committerZachary T Welch <zw@superlucidity.net>2009-11-26 10:11:26 -0800
commit1240ae459f170db8a641b4bcd5635ba9f9199aec (patch)
treea85b46b8b241304096cfb00cbb12ec8e22221142
parent060980357df2f71b8d18eb6a86a8c9878a8b417e (diff)
downloadopenocd+libswd-1240ae459f170db8a641b4bcd5635ba9f9199aec.tar.gz
openocd+libswd-1240ae459f170db8a641b4bcd5635ba9f9199aec.tar.bz2
openocd+libswd-1240ae459f170db8a641b4bcd5635ba9f9199aec.tar.xz
openocd+libswd-1240ae459f170db8a641b4bcd5635ba9f9199aec.zip
fix typos in source files
Correct some spelling errors in source comments and printed output. Signed-off-by: Zachary T Welch <zw@superlucidity.net>
-rw-r--r--src/server/gdb_server.c10
-rw-r--r--src/server/httpd.c4
-rw-r--r--src/server/server.c2
3 files changed, 8 insertions, 8 deletions
diff --git a/src/server/gdb_server.c b/src/server/gdb_server.c
index bd1d047d..3c099fa0 100644
--- a/src/server/gdb_server.c
+++ b/src/server/gdb_server.c
@@ -53,7 +53,7 @@ static const char *DIGITS = "0123456789abcdef";
static void gdb_log_callback(void *priv, const char *file, unsigned line,
const char *function, const char *string);
-/* number of gdb connections, mainly to supress gdb related debugging spam
+/* number of gdb connections, mainly to suppress gdb related debugging spam
* in helper/log.c when no gdb connections are actually active */
int gdb_actual_connections;
@@ -568,7 +568,7 @@ int gdb_get_packet_inner(struct connection *connection, char *buffer, int *len)
break;
case '+':
/* gdb sends a dummy ack '+' at every remote connect - see remote_start_remote (remote.c)
- * incase anyone tries to debug why they receive this warning every time */
+ * in case anyone tries to debug why they receive this warning every time */
LOG_WARNING("acknowledgment received, but no packet pending");
break;
case '-':
@@ -859,7 +859,7 @@ static int gdb_reg_pos(struct target *target, int pos, int len)
* register might be non-divisible by 8(a byte), in which
* case an entire byte is shown.
*
- * NB! the format on the wire is the target endianess
+ * NB! the format on the wire is the target endianness
*
* The format of reg->value is little endian
*
@@ -2141,7 +2141,7 @@ int gdb_input_inner(struct connection *connection)
target_name(target));
break;
default:
- /* ignore unkown packets */
+ /* ignore unknown packets */
LOG_DEBUG("ignoring 0x%2.2x packet", packet[0]);
gdb_put_packet(connection, NULL, 0);
break;
@@ -2320,7 +2320,7 @@ COMMAND_HANDLER(handle_gdb_breakpoint_override_command)
LOG_USER("force %s breakpoints", (gdb_breakpoint_override_type == BKPT_HARD)?"hard":"soft");
} else
{
- LOG_USER("breakpoint type is not overriden");
+ LOG_USER("breakpoint type is not overridden");
}
return ERROR_OK;
diff --git a/src/server/httpd.c b/src/server/httpd.c
index 8c1d3dba..9fa58790 100644
--- a/src/server/httpd.c
+++ b/src/server/httpd.c
@@ -207,7 +207,7 @@ static void request_completed(void *cls, struct MHD_Connection *connection,
*con_cls = NULL;
}
-/* append to said key in dictonary */
+/* append to said key in dictionary */
static void append_key(struct httpd_request *r, const char *key,
const char *data, size_t off, size_t size)
{
@@ -388,7 +388,7 @@ static int ahc_echo_inner(void * cls, struct MHD_Connection * connection,
r->post = post;
Jim_SetVariableStr(interp, "httppostdata", Jim_NewDictObj(interp, NULL, 0));
- /* fill in url query strings in dictonary */
+ /* fill in url query strings in dictionary */
MHD_get_connection_values(connection, MHD_GET_ARGUMENT_KIND,
record_arg, r);
diff --git a/src/server/server.c b/src/server/server.c
index 50bc00eb..3ba433e8 100644
--- a/src/server/server.c
+++ b/src/server/server.c
@@ -309,7 +309,7 @@ int server_loop(struct command_context *command_context)
while (!shutdown_openocd)
{
- /* monitor sockets for acitvity */
+ /* monitor sockets for activity */
fd_max = 0;
FD_ZERO(&read_fds);