aboutsummaryrefslogtreecommitdiff
path: root/gdb/gdbserver
diff options
context:
space:
mode:
authorDoug Evans <dje@google.com>2008-05-09 17:37:36 +0000
committerDoug Evans <dje@google.com>2008-05-09 17:37:36 +0000
commit5e1471f57fac8ea99e40cfb4be212e896bac56ff (patch)
tree912a2d71d8b67aa64313f4da3943bbc9f5220358 /gdb/gdbserver
parent08388c79d5a8553465b2de881bed15766837735c (diff)
downloadgdb-5e1471f57fac8ea99e40cfb4be212e896bac56ff.zip
gdb-5e1471f57fac8ea99e40cfb4be212e896bac56ff.tar.gz
gdb-5e1471f57fac8ea99e40cfb4be212e896bac56ff.tar.bz2
* error.c (parse_find_args): Fix capitalization in previous patch.
(find_command): Ditto. * target.c (simple_search_memory): Ditto. * gdbserver/server.c (handle_search_memory_1): Ditto. (handle_search_memory): Ditto.
Diffstat (limited to 'gdb/gdbserver')
-rw-r--r--gdb/gdbserver/server.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/gdb/gdbserver/server.c b/gdb/gdbserver/server.c
index 6993ae3..ab4d8ec 100644
--- a/gdb/gdbserver/server.c
+++ b/gdb/gdbserver/server.c
@@ -327,7 +327,7 @@ handle_search_memory_1 (CORE_ADDR start_addr, CORE_ADDR search_space_len,
if (read_inferior_memory (start_addr, search_buf, search_buf_size) != 0)
{
- warning ("unable to access target memory at 0x%lx, halting search",
+ warning ("Unable to access target memory at 0x%lx, halting search.",
(long) start_addr);
return -1;
}
@@ -379,7 +379,7 @@ handle_search_memory_1 (CORE_ADDR start_addr, CORE_ADDR search_space_len,
if (read_inferior_memory (read_addr, search_buf + keep_len,
nr_to_read) != 0)
{
- warning ("unable to access target memory at 0x%lx, halting search",
+ warning ("Unable to access target memory at 0x%lx, halting search.",
(long) read_addr);
return -1;
}
@@ -415,7 +415,7 @@ handle_search_memory (char *own_buf, int packet_len)
pattern = malloc (packet_len);
if (pattern == NULL)
{
- error ("unable to allocate memory to perform the search");
+ error ("Unable to allocate memory to perform the search");
strcpy (own_buf, "E00");
return;
}
@@ -425,7 +425,7 @@ handle_search_memory (char *own_buf, int packet_len)
pattern, &pattern_len) < 0)
{
free (pattern);
- error ("error in parsing qSearch:memory packet");
+ error ("Error in parsing qSearch:memory packet");
strcpy (own_buf, "E00");
return;
}
@@ -440,7 +440,7 @@ handle_search_memory (char *own_buf, int packet_len)
if (search_buf == NULL)
{
free (pattern);
- error ("unable to allocate memory to perform the search");
+ error ("Unable to allocate memory to perform the search");
strcpy (own_buf, "E00");
return;
}