summaryrefslogtreecommitdiffstats
path: root/daemon
diff options
context:
space:
mode:
authorRichard Jones <rjones@trick.home.annexia.org>2009-07-22 21:18:01 +0100
committerRichard Jones <rjones@trick.home.annexia.org>2009-07-22 21:18:01 +0100
commit26f69f706e8c661c6ae7946da1b9a4b7bf9150b9 (patch)
tree9c7ad833d9a5ba78c3435e622b82dde9fde53eea /daemon
parent23e6fc3f61294acf1bce2003dc4060df25e899f9 (diff)
downloadlibguestfs-26f69f706e8c661c6ae7946da1b9a4b7bf9150b9.tar.gz
libguestfs-26f69f706e8c661c6ae7946da1b9a4b7bf9150b9.tar.xz
libguestfs-26f69f706e8c661c6ae7946da1b9a4b7bf9150b9.zip
Fix typo in error message.
Diffstat (limited to 'daemon')
-rw-r--r--daemon/file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/daemon/file.c b/daemon/file.c
index 66b3d125..7c46722c 100644
--- a/daemon/file.c
+++ b/daemon/file.c
@@ -355,7 +355,7 @@ do_read_file (char *path, size_t *size_r)
* be caught later when we try to serialize the message.
*/
if (*size_r >= GUESTFS_MESSAGE_MAX) {
- reply_with_error ("read_file: %s: file is too large for the protocol, use gusetfs_download instead", path);
+ reply_with_error ("read_file: %s: file is too large for the protocol, use guestfs_download instead", path);
close (fd);
return NULL;
}