aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPaul Fertser <fercerpav@gmail.com>2016-08-10 09:40:34 +0300
committerAndreas Fritiofson <andreas.fritiofson@gmail.com>2016-11-05 17:44:01 +0000
commit21832327eed48be9d44607890d11d31b88d1bd30 (patch)
treeb4169a614855f093b031be515e15cd5f156c2f37 /src
parent7d2ad65c6400dea415cd7e0b19d502488b371bfc (diff)
downloadriscv-openocd-21832327eed48be9d44607890d11d31b88d1bd30.zip
riscv-openocd-21832327eed48be9d44607890d11d31b88d1bd30.tar.gz
riscv-openocd-21832327eed48be9d44607890d11d31b88d1bd30.tar.bz2
Replace "daemon" with "server" in user-visible strings
Since OpenOCD doesn't fit most common definitions of the word "daemon", using it in the documentation is confusing. Reported by IRC user ohsix. Change-Id: I688d722771b084b17c2a7af8e83fd64bab6141b8 Signed-off-by: Paul Fertser <fercerpav@gmail.com> Reviewed-on: http://openocd.zylin.com/3634 Reviewed-by: Andreas Fritiofson <andreas.fritiofson@gmail.com> Tested-by: jenkins
Diffstat (limited to 'src')
-rw-r--r--src/target/image.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/target/image.c b/src/target/image.c
index 0612ea7..f97d904 100644
--- a/src/target/image.c
+++ b/src/target/image.c
@@ -729,7 +729,7 @@ int image_open(struct image *image, const char *url, const char *type_string)
retval = image_ihex_buffer_complete(image);
if (retval != ERROR_OK) {
LOG_ERROR(
- "failed buffering IHEX image, check daemon output for additional information");
+ "failed buffering IHEX image, check server output for additional information");
fileio_close(image_ihex->fileio);
return retval;
}
@@ -780,7 +780,7 @@ int image_open(struct image *image, const char *url, const char *type_string)
retval = image_mot_buffer_complete(image);
if (retval != ERROR_OK) {
LOG_ERROR(
- "failed buffering S19 image, check daemon output for additional information");
+ "failed buffering S19 image, check server output for additional information");
fileio_close(image_mot->fileio);
return retval;
}