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
This commit is contained in:
committed by
Andreas Fritiofson
parent
7d2ad65c64
commit
21832327ee
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user